A multi-agent research MCP server + mini client adapter - orchestrates a net of async agents or streaming swarm to conduct ensemble consensus-backed research. Each task builds its own indexed pglite database on the fly in web assembly. Includes semantic + hybrid search, SQL execution, semaphores, prompts/resources and more
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"openrouter-agents": {
"env": {
"INDEXER_ENABLED": "true",
"OPENROUTER_API_KEY": "${OPENROUTER_API_KEY}"
},
"args": [
"@terminals-tech/openrouter-agents",
"--stdio"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Production MCP server for multi-agent AI research. Plan, parallelize, synthesize.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @terminals-tech/openrouter-agents against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / search
Persistent memory using a knowledge graph
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
Multi-engine MCP server, CLI, and local daemon for agent web search and content retrieval — skill-guided workflows, no API keys.
MCP Security Weekly
Get CVE alerts and security updates for Openrouter Deep Research Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Production MCP server for multi-agent AI research. Plan, parallelize, synthesize.
npx @terminals-tech/openrouter-agents --stdio
Claude Code one-liner:
claude mcp add openrouter-agents -- npx @terminals-tech/openrouter-agents --stdio
macOS/Node 25 Note: A cosmetic
libc++abi: mutex lock failedmessage may appear on shutdown. This is harmless — data is checkpointed before shutdown. SetDB_AUTO_HEAL=truefor in-memory mode (no persistence, no message).
Full Changelog | Extensions Guide | MCP Compliance Report
Set OPENROUTER_API_KEY in your environment, then configure via .env or .mcp.json:
| Variable | Default | Description |
|---|---|---|
OPENROUTER_API_KEY | required | OpenRouter API key |
OPENROUTER_API_KEYS | (optional) | Comma-separated OpenRouter keys for rotation |
OPENROUTER_KEY_COOLDOWN_MS | 5000 | Base cooldown per key after failures |
SERVER_PORT | 3002 | HTTP server port |
MODE | ALL | AGENT, MANUAL, or ALL |
EMBEDDING_ROUTING_ENABLED | true | Enable embedding-based model routing |
INDEXER_ENABLED | true | Enable knowledge indexing |
{
"mcpServers": {
"openrouter-agents": {
"command": "npx",
"args": ["@terminals-tech/openrouter-agents", "--stdio"],
"env": {
"OPENROUTER_API_KEY": "${OPENROUTER_API_KEY}",
"INDEXER_ENABLED": "true"
}
}
}
}
| Transport | Flag | Use Case |
|---|---|---|
| STDIO | (default) | MCP clients (Claude, Jan AI, Continue) |
| HTTP | --http | Web apps, shared server |
STDIO is the default transport per MCP spec. Use --http explicitly for HTTP mode.
openrouter-agentsnpx@terminals-tech/openrouter-agentsOPENROUTER_API_KEY=sk-or-...Note: STDIO is now default - no --stdio flag needed.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"openrouter-agents": {
"command": "npx",
"args": ["@terminals-tech/openrouter-agents"],
"env": {
"OPENROUTER_API_KEY": "sk-or-..."
}
}
... [View full README on GitHub](https://github.com/wheattoast11/openrouter-deep-research-mcp#readme)