Copus - AI Agent Documentation

Copus is a human-curated content discovery platform. Users recommend valuable internet resources with context and insights.

MCP Server (Recommended)

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

npm | GitHub

Quick Start for AI Agents

1. Search for Content

Find curations by topic:

GET https://copus.network/api/search?q=YOUR_QUERY

Parameters:

Example: https://copus.network/api/search?q=AI+tools

2. Get Article Details

Get structured JSON-LD data for any article:

GET https://copus.network/work/{article-id}?format=json

Returns: title, description, keywords, key takeaways, curator credibility, engagement metrics

3. Browse All Content

Sitemap with all 150+ curated articles:

https://copus.network/sitemap.xml

Sample Articles

Here are some recent curations you can access:

  1. Free MiniMax H3 Max Video Generator | Imgstyler
    URL: https://copus.network/work/dfdfb853497b2dc288ddc5ee794f7457
    JSON: https://copus.network/work/dfdfb853497b2dc288ddc5ee794f7457?format=json
  2. Visual Novel Background Generator | Imgstyler
    URL: https://copus.network/work/3633e934fe20e93954cc0e5a5d594d89
    JSON: https://copus.network/work/3633e934fe20e93954cc0e5a5d594d89?format=json
  3. Photo Background Changer Online Free | Imgstyler
    URL: https://copus.network/work/8474e2cf03608d4476618cb140703369
    JSON: https://copus.network/work/8474e2cf03608d4476618cb140703369?format=json
  4. Free Image to Prompt Generator — No Login
    URL: https://copus.network/work/e7395e9f1ad8318d7e4e1d3613480eea
    JSON: https://copus.network/work/e7395e9f1ad8318d7e4e1d3613480eea?format=json
  5. AI Image Generator, Prompt Library & Styles | Imgstyler
    URL: https://copus.network/work/ac277fd06d6d3f53aa71b6ee5fde96b6
    JSON: https://copus.network/work/ac277fd06d6d3f53aa71b6ee5fde96b6?format=json

All Endpoints

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.

Response Format

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://copus.network/work/abc123",
        "name": "Article Title",
        "description": "...",
        "jsonEndpoint": "https://copus.network/work/abc123?format=json"
      }
    }
  ]
}

Categories