Claude Desktop
Note: Claude Desktop currently requires a manually configured API key (browser-based OAuth is not yet supported by Claude Desktop’s MCP implementation). You’ll need Node.js installed — download it here if needed.
-
Open Claude Desktop settings → Developer → Edit Config.
-
Add the Klozeo MCP server to
claude_desktop_config.json:{"mcpServers": {"klozeo": {"command": "npx","args": ["-y", "@modelcontextprotocol/server-sse", "https://api.klozeo.com/mcp/sse"],"env": {"API_KEY": "sk_live_your_key"}}}}Replace
sk_live_your_keywith your actual API key from the dashboard. Thenpxcommand runs a local MCP bridge process using Node.js — it will be downloaded automatically on first run. -
Restart Claude Desktop.
-
In any new conversation, you’ll see Klozeo listed in the tools/context area. You should see 18 tools listed — if you don’t, see Troubleshooting below.
-
Try a natural language query:
“Find all leads in Paris with a rating above 4 and send me the top 5”
Troubleshooting
Section titled “Troubleshooting”- Tools not showing: Restart Claude Desktop after config changes. Check that Node.js is installed (
node --versionin a terminal). - Auth error: Verify your
API_KEYvalue is correct and has not been revoked from the dashboard. - Connection refused: Check that
api.klozeo.comis reachable from your network. - npx error / package not found: Ensure you have Node.js 18+ and that
npxis available in yourPATH.