REST API & MCP

API Documentation

Everything you need to integrate Curyloop into your workflows. Authenticate with API keys, manage groups and sessions, and connect via MCP for AI-powered access.

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_KEY with an API key from Settings > API Keys.