API Keys and MCP Configuration
Zhu Li provides a Model Context Protocol (MCP) server that lets you connect AI-powered code editors like Claude Desktop, Cursor, and Claude Code directly to your workspace.
Step 1: Get your API Key
Your API key is required to authenticate your MCP client with the Zhu Li server.
- Go to your Zhu Li dashboard → Settings.
- Under the API Key section, you will see your current masked key.
- Click Rotate API Key if you need a new one (copy it immediately as it's only shown once).
Step 2: Configure Claude Desktop
To connect Claude Desktop to Zhu Li, you need to add the server configuration to your mcp.json file.
- Locate your
mcp.jsonfile:- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Add the
zhu-liconfiguration to themcpServersobject:
{
"mcpServers": {
"zhu-li": {
"url": "https://zhuli.aevr.space/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
- Replace
YOUR_API_KEYwith the key you obtained in Step 1. - Restart Claude Desktop.
Step 3: Configure Cursor
Cursor supports MCP servers via its settings menu.
- Open Cursor and go to Settings → Features → MCP.
- Click + Add New MCP Server.
- Set the Name to
zhu-li. - Set the Type to
command(if using a local CLI) orsse(if using the remote URL). - For the URL, use:
https://zhuli.aevr.space/api/mcp. - Add an
Authorizationheader with the valueBearer YOUR_API_KEY.
What can you do with Zhu Li MCP?
Connecting your editor to Zhu Li allows your AI coding assistant to:
- Search Notion: Query your workspace for existing issues, PRDs, and documentation.
- Submit Issues: Found a bug? Let the AI submit it directly to Notion without leaving the editor.
- Contextual Awareness: The AI can link the code it's writing to the specific feature or bug report you're working on.