Step-by-step

Guides

Practical, step-by-step guides to get the most out of Curyloop. From your first session to advanced automation.

Back to Guides
AI & Automation

Connecting MCP to Claude Code & Cursor

Set up Curyloop's MCP server to search and curate content directly from your AI-powered IDE.

Curyloop Team1 min read
aimcpclaude-codecursoride
Connecting MCP to Claude Code and Cursor

What is MCP?

MCP (Model Context Protocol) lets AI tools like Claude Code, Cursor, and Windsurf connect to external services. With Curyloop's MCP server, your AI assistant can search your knowledge base, create sessions, and add items - all from your terminal or IDE.

Get your API key

  1. Go to SettingsAPI Keys
  2. Click Generate API Key
  3. Copy the key - you'll need it for configuration

Claude Code

Add Curyloop as an MCP server:

bash
claude mcp add curyloop \
  --transport http \
  --url https://curyloop.com/api/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

Now you can ask Claude things like:

  • "Search my Curyloop for React performance articles"
  • "Add this URL to my current session"
  • "Create a new session called 'Q2 Research'"

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"
      }
    }
  }
}

Windsurf

Add to your .windsurf/mcp.json:

json
{
  "mcpServers": {
    "curyloop": {
      "type": "streamable-http",
      "url": "https://curyloop.com/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Available tools

Once connected, the MCP server exposes these tools:

ToolDescription
search_itemsSearch across all your curated items
create_sessionCreate a new session in a group
add_itemAdd an item to a session
list_groupsList your groups
list_sessionsList sessions in a group

Tips

  • Use MCP to save references while coding without switching context
  • Build a project-specific knowledge base right from your IDE
  • Combine with the AI Agent for a fully automated research pipeline
Share

Ready to try it yourself?

Start building your team's knowledge base today. Free to start, no credit card required.