
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
copus-mcp-server
Advanced tools
MCP server for searching human-curated content recommendations on Copus
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.
FAQs
MCP server for searching human-curated content recommendations on Copus
We found that copus-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.