Connects Claude to Copus's human-curated content discovery platform, which surfaces recommendations from real people instead of SEO results. Exposes two tools: search_curations for querying by keywords with optional result limits, and get_curation for fetching full details including the curator's personal note, their credentials, and engagement metrics. Each result includes why someone found the content valuable, not just what it is. Useful when you need vetted tools, tutorials, or articles in a specific domain and want to know why practitioners actually recommend them. Wraps the public Copus API at copus.network and returns structured data with curator profiles and community engagement alongside the original source URLs.
An MCP (Model Context Protocol) server that allows AI assistants to search and retrieve human-curated content recommendations from Copus.
Copus is a human-curated content discovery platform — "The Internet Treasure Map". Unlike SEO-driven search results, Copus surfaces recommendations from real people who explain why content is valuable.
Each curation includes:
This server gives AI assistants access to Copus's curated content database. Instead of generic search results, your AI can find:
This MCP server works with any AI platform that supports the Model Context Protocol:
No installation required — run directly with npx:
npx copus-mcp-server
npm install -g copus-mcp-server
Then run:
copus-mcp-server
npm install copus-mcp-server
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"copus": {
"command": "npx",
"args": ["copus-mcp-server"]
}
}
}
Or if installed globally:
{
"mcpServers": {
"copus": {
"command": "copus-mcp-server"
}
}
}
Add to your Claude Code MCP settings:
{
"mcpServers": {
"copus": {
"command": "npx",
"args": ["copus-mcp-server"]
}
}
}
Add to your Cursor MCP configuration (.cursor/mcp.json in your project or global settings):
{
"mcpServers": {
"copus": {
"command": "npx",
"args": ["copus-mcp-server"]
}
}
}
Add to Cline's MCP settings in VS Code:
{
"copus": {
"command": "npx",
"args": ["copus-mcp-server"]
}
}
Add to your Continue configuration (~/.continue/config.json):
{
"mcpServers": [
{
"name": "copus",
"command": "npx",
"args": ["copus-mcp-server"]
}
]
}
search_curationsSearch human-curated content recommendations on Copus.
Parameters:
query (string, required): Search keywordslimit (number, optional): Maximum results (default: 10, max: 50)Returns: Array of curations with:
get_curationGet detailed information about a specific curation.
Parameters:
id (string, required): Curation ID (UUID from search results)Returns: Full curation details including:
Once configured, you can ask your AI assistant things like:
"I want to learn Python, what resources should I check out?"
"Find me some recommended machine learning tutorials"
"What are the best resources for learning web development?"
"What tools do designers recommend for wireframing?"
"Find me some AI tools that people actually use and recommend"
"What's a good free video editing software?"
"Any good reads on creative writing?"
"Find me articles about productivity that people found valuable"
"What are some recommended newsletters about tech?"
"Find watermark remover tools"
"What Linux tools do people recommend?"
"Show me personal growth content recommendations"
When you search for "python tutorials", you might get:
{
"query": "python tutorials",
"totalResults": 5,
"results": [
{
"id": "abc123...",
"title": "Real Python - Python Tutorials",
"description": "Comprehensive Python tutorials covering basics to advanced topics...",
"originalSource": "https://realpython.com",
"category": "Technology",
"curator": "experienced_dev",
"engagement": {
"views": 150,
"saves": 23
}
}
]
}
| Regular Search | Copus Curations |
|---|---|
| SEO-optimized results | Human-selected recommendations |
| Algorithm-driven | Expert-vetted content |
| No context on quality | Curator explains why it's valuable |
| Anonymous sources | Known curator with credentials |
| Quantity-focused | Quality-focused |
git clone https://github.com/copus-io/copus-mcp-server.git
cd copus-mcp-server
npm install
npm run build
npm run dev
# Run the server
npm start
# In another terminal, test with MCP inspector or your AI platform
This MCP server wraps the Copus public API:
https://copus.network/api/search?q={query}https://copus.network/work/{id}?format=jsonhttps://copus.network/.well-known/openapi.yamlhttps://copus.network/.well-known/ai-plugin.jsonContributions are welcome! Please feel free to submit a Pull Request.
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)MIT License - see LICENSE for details.
Built with love by the Copus team.
com.mcparmory/google-search
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp