mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp by awslabs | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9,068 | ★ 85,748 |
| 30d uses | — | — |
| Score | 61 | 77 |
| Official | — | ✓ |
| Categories | Cloud StorageDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
mcp · Summary
AWS Labs provides a comprehensive suite of MCP servers for AWS services, enabling AI applications to access AWS documentation and resources.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp · Use cases
- AI-powered coding assistants for AWS infrastructure development
- Chat applications providing real-time AWS documentation access
- Automated cloud management workflows through AI agents
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
mcp · Install
Installation
For macOS/Linux
pip install -e .For Windows
pip install -e .Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"aws-mcp": {
"command": "python",
"args": ["-m", "awslabs.mcp"]
}
}
}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