Copus is a human-curated content discovery platform. Users recommend valuable internet resources with context and insights.
Use Copus directly in Claude Desktop, Cursor, Cline, Continue, Zed, and other MCP-compatible AI tools:
npx copus-mcp-server
Add to your MCP config:
{
"mcpServers": {
"copus": {
"command": "npx",
"args": ["copus-mcp-server"]
}
}
}
Find curations by topic:
GET https://test.copus.network/api/search?q=YOUR_QUERY
Parameters:
q (required) - Search querycategory (optional) - Technology, Art, Sports, Lifelimit (optional) - Max results (default 10, max 50)Get structured JSON-LD data for any article:
GET https://test.copus.network/work/{article-id}?format=json
Returns: title, description, keywords, key takeaways, curator credibility, engagement metrics
Sitemap with all 150+ curated articles:
https://test.copus.network/sitemap.xml
Here are some recent curations you can access:
| Endpoint | Description |
|---|---|
| /api/search?q=QUERY | Search curations by topic |
| /work/{id}?format=json | Get article as JSON-LD |
| /sitemap.xml | All article URLs |
| /llms.txt | LLM documentation |
| /.well-known/ai-plugin.json | ChatGPT plugin manifest |
| /.well-known/openapi.yaml | OpenAPI specification |
| npx copus-mcp-server | MCP Server for Claude, Cursor, Cline, etc. |
Search results return JSON-LD with schema.org types:
{
"@context": "https://schema.org",
"@type": "SearchResultsPage",
"query": "AI tools",
"totalResults": 5,
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "Article",
"url": "https://test.copus.network/work/abc123",
"name": "Article Title",
"description": "...",
"jsonEndpoint": "https://test.copus.network/work/abc123?format=json"
}
}
]
}