Copus Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Copus Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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-servernpm install -g copus-mcp-serverThen run:
copus-mcp-servernpm install copus-mcp-serverAdd 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 buildnpm run dev# Run the server
npm start
# In another terminal, test with MCP inspector or your AI platformThis 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.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.