aws-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
aws-mcp-server by alexei-led | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 182 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Ops & InfraDeveloper ToolsCloud Storage | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
aws-mcp-server · Summary
AWS MCP server enables AI assistants to execute AWS CLI commands through MCP in safe containerized environment.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
aws-mcp-server · Use cases
- Automating AWS infrastructure management through AI assistants
- Cloud debugging and troubleshooting using AI-powered CLI command generation
- Infrastructure-as-code assistance with AWS services
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
aws-mcp-server · Install
Installation
Using uvx (Recommended)
Add to your MCP settings (Cmd+Shift+P → "Claude: Open MCP Config"):
{
"mcpServers": {
"aws": {
"command": "uvx",
"args": ["aws-mcp"]
}
}
}Using Docker (More Secure)
Docker provides stronger isolation by running commands in a container:
{
"mcpServers": {
"aws": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"~/.aws:/home/appuser/.aws:ro",
"ghcr.io/alexei-led/aws-mcp-server:latest"
]
}
}
}Using Streamable HTTP Transport
For web-based MCP clients:
docker run --rm -p 8000:8000 -e AWS_MCP_TRANSPORT=streamable-http -v ~/.aws:/home/appuser/.aws:ro ghcr.io/alexei-led/aws-mcp-server:latestThe server will be available at http://localhost:8000/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