Claude Desktop
Claude Desktop supports MCP servers via a JSON config file. Once set up, you can talk to Aigeon directly in your Claude conversations.
Prerequisites
- Claude Desktop installed (download from claude.ai).
- Node.js 18+ on your system PATH (check:
node -v). - An Aigeon API key with the permissions you need.
Config
Open Claude Desktop → Settings → Developer → Edit Config (or find the config file manually):
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add the Aigeon server to mcpServers:
{
"mcpServers": {
"aigeon": {
"command": "npx",
"args": ["-y", "@aigeon/mcp-server"],
"env": {
"AIGEON_API_KEY": "sk_your_key_here"
}
}
}
}
Save the file and restart Claude Desktop.
Verify
In a new conversation, type:
List my Aigeon API tools
Claude should enumerate the available tools (add contact, trigger flow, pull stats, etc.). If it doesn't, check Settings → Developer for error messages from the MCP server.
Example prompts
Once connected, you can ask Claude things like:
- "Add alice@example.com to the beta testers list."
- "Trigger the welcome flow for new signup bob@example.com with order_id ord_999."
- "What were the open and click rates for the last campaign?"
- "How many contacts do we have in the 'weekly newsletter' list?"
Claude will call the appropriate Aigeon tool and return the result in plain language.
