Configure AI agents for automated content curation with Curyloop. Works with Claude Code, Cursor, Cline, Windsurf, Claude Desktop, and more.
AI Agent Setup
Curyloop works with any MCP-compatible AI client. Here are the most popular setups with ready-to-use prompts.
Claude Code
claude mcp add curyloop \
--transport http \
--url https://curyloop.com/api/mcp \
--header "Authorization: Bearer YOUR_API_KEY"
Prompt:
Search the web for the best resources about "edge computing in 2026",
then add the top 5 results to my Curyloop session called "Tech Trends".
Use high priority for articles from major publications.
Cursor
Add to your .cursor/mcp.json:
{
"mcpServers": {
"curyloop": {
"type": "streamable-http",
"url": "https://curyloop.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Prompt:
Research the best practices for the tech stack in this project,
find 5 high-quality guides, and save them to my "Best Practices"
session in Curyloop with appropriate priorities.
Cline (VS Code)
Add to your .vscode/mcp.json:
{
"mcpServers": {
"curyloop": {
"type": "streamable-http",
"url": "https://curyloop.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Prompt:
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.
Windsurf
Add to your .windsurf/mcp.json:
{
"mcpServers": {
"curyloop": {
"type": "streamable-http",
"url": "https://curyloop.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Prompt:
Find the top 5 articles about serverless architecture patterns,
evaluate each one for quality, and save the best ones to my
"Architecture" session in Curyloop with tags and descriptions.
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"curyloop": {
"type": "streamable-http",
"url": "https://curyloop.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Prompt:
Research the latest developments in WebAssembly, find 5 must-read
articles and GitHub repos, and add them to my "WASM Research"
session in Curyloop.
GitHub Copilot
GitHub Copilot supports MCP servers in VS Code. Add to your .vscode/mcp.json:
{
"mcpServers": {
"curyloop": {
"type": "streamable-http",
"url": "https://curyloop.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Prompt:
Search for the best testing libraries and guides for my current
project stack, then save them to my "Testing Resources" session
in Curyloop with priority levels.
Any MCP-Compatible Client
Curyloop's MCP endpoint works with any client that supports the MCP protocol. Use these connection details:
| Setting | Value |
|---|---|
| Transport | streamable-http |
| URL | https://curyloop.com/api/mcp |
| Auth Header | Authorization: Bearer YOUR_API_KEY |
Get your API key from Settings > API Keys. For detailed MCP setup, see MCP Setup.