Connect a client
Pick your client. Token clients use a Bearer header; connector clients use one-click OAuth.
Claude Code Token
Anthropic's CLI
- Generate a token on the MCP page in your Lemon Domains account.
- Run the command below, replacing YOUR_TOKEN.
- Run /mcp inside Claude Code to confirm it connected.
terminalclaude mcp add lemon-domains \
--transport http \
--header "Authorization: Bearer YOUR_TOKEN" \
https://mcp.lemon.domains/mcpCursor Token
AI code editor
- Generate a token on the MCP page.
- Add the block below to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global).
- Reload Cursor; the lemon-domains tools appear in the MCP panel.
.cursor/mcp.json{
"mcpServers": {
"lemon-domains": {
"url": "https://mcp.lemon.domains/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}Claude.ai & Claude Desktop OAuth
Anthropic web + desktop app
- Settings → Connectors → Add custom connector.
- Server URL: https://mcp.lemon.domains/mcp
- Click Connect; sign in with the email on your Lemon Domains account and approve.
Sign in with the same email as your Lemon Domains account. That is how the connector maps to your portfolio. No matching account means access denied.
ChatGPT OAuth
OpenAI (Developer mode / connectors)
- Enable connectors in ChatGPT Settings (Plus/Pro/Business/Enterprise).
- Add a custom connector / MCP server.
- Server URL: https://mcp.lemon.domains/mcp; authenticate via OAuth with your Lemon Domains email.
Sign in with the same email as your Lemon Domains account. That is how the connector maps to your portfolio. No matching account means access denied.
Windsurf Token
AI code editor
- Open the Cascade MCP settings.
- Add a server with the config below.
~/.codeium/windsurf/mcp_config.json{
"mcpServers": {
"lemon-domains": {
"serverUrl": "https://mcp.lemon.domains/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}Any MCP client Token
Generic / raw HTTP
- Point the client at the server URL using the Streamable HTTP transport.
- Send Authorization: Bearer YOUR_TOKEN on every request.
- Probe with the curl below to list tools.
terminalcurl -X POST https://mcp.lemon.domains/mcp \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'