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 Curyloop to Cline in VS Code for AI-powered content curation. Save documentation, tutorials, and references while coding.

Cline + Curyloop

Use Cline's AI capabilities in VS Code to curate content directly into your Curyloop knowledge base.

Setup

Add to your .vscode/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 your key from Settings > API Keys.

What You Can Do

With Curyloop connected to Cline, your AI coding assistant can:

  • Save references you discover while debugging or building features
  • Build documentation libraries for your project dependencies
  • Curate learning resources relevant to your current codebase
  • Search your knowledge base to find previously saved resources

Example Prompts

Dependency Documentation

Look at the packages in my project's package.json, find the official
documentation and best tutorial for each major dependency, and add
them to my "Project Resources" session in Curyloop.

Debug Research

I'm getting a "hydration mismatch" error in my Next.js app. Find
the top 5 most helpful resources about fixing this issue and save
them to my "Debug Notes" session in Curyloop.

Architecture References

Find the best guides about implementing authentication in Next.js
with Supabase. Save them to my "Auth Implementation" session with
appropriate priority levels.

Code Review Resources

Research best practices for React performance optimization.
Find articles about memo, useMemo, useCallback, and React Compiler.
Save to my "React Performance" session in Curyloop.

Available MCP Tools

ToolDescription
list_groupsList all your Curyloop groups
list_sessionsList sessions in a group
list_itemsList items in a session
add_itemAdd a new item to a session
search_itemsSearch across all your items

Tips

  • Cline can read your project files to suggest relevant resources
  • Ask Cline to tag items based on the technology or framework
  • Use Cline's context awareness to find project-specific documentation
  • Combine with Cline's code generation for research-driven development

For general MCP setup details, see MCP Setup. For more AI agent examples, see AI Agents.