protocols-io-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
protocols-io-mcp-server by hqn21 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 4 mo ago | this month |
protocols-io-mcp-server · Summary
A functional MCP server enabling Claude Desktop to interact with protocols.io scientific protocols.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
protocols-io-mcp-server · Use cases
- Scientists can retrieve detailed protocols without leaving their AI assistant
- Research teams can create and manage protocols through conversational AI
- Educational institutions can integrate protocol databases into AI workflows
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
protocols-io-mcp-server · Install
Installation
Quick Start with Docker
docker run -d -p 8000:8000 -e PROTOCOLS_IO_CLIENT_ID="your_client_id" -e PROTOCOLS_IO_CLIENT_SECRET="your_client_secret" -e PROTOCOLS_IO_MCP_BASE_URL="https://example.com" --name protocols-io-mcp --restart always ghcr.io/hqn21/protocols-io-mcp:latestInstall via pip
pip install protocols-io-mcpClaude Desktop Integration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"protocols-io": {
"command": "protocols-io-mcp",
"env": {
"PROTOCOLS_IO_CLIENT_ACCESS_TOKEN": "your_client_access_token"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything