Connect your AI client to Curyloop's MCP server.
MCP Setup
Claude Desktop
Add this to your ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
json
{
"mcpServers": {
"curyloop": {
"type": "streamable-http",
"url": "https://curyloop.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Claude Code
Run this command in your terminal:
bash
claude mcp add curyloop \
--transport http \
--url https://curyloop.com/api/mcp \
--header "Authorization: Bearer YOUR_API_KEY"
Cursor
Add to your .cursor/mcp.json:
json
{
"mcpServers": {
"curyloop": {
"type": "streamable-http",
"url": "https://curyloop.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Replace
YOUR_API_KEYwith an API key from Settings > API Keys.