Lambda-MCP-Server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Lambda-MCP-Server by mikegc-aws | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 232 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 11 mo ago | this month |
Lambda-MCP-Server · Summary
AWS Lambda serverless MCP server implementation with session management and HTTP streaming support.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Lambda-MCP-Server · Use cases
- Deploying serverless MCP tools on AWS infrastructure
- Creating stateless AI applications with persistent session context
- Building scalable MCP endpoints for cloud-based 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
Lambda-MCP-Server · Install
Install via pip:
pip install awslabs.mcp_lambda_handlerFor Claude Desktop, add to your config.json:
{
"mcpServers": {
"lambda-mcp": {
"command": "python",
"args": ["-m", "awslabs.mcp_lambda_handler"],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_AWS_KEY",
"AWS_SECRET_ACCESS_KEY": "YOUR_AWS_SECRET"
}
}
}
}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