aws-security-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
aws-security-mcp by groovyBugify | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | SecurityOps & InfraAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 10 mo ago | this month |
aws-security-mcp · Summary
A MCP server connecting AI assistants to AWS security services for infrastructure analysis.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
aws-security-mcp · Use cases
- Security analysts can query AWS resources using natural language to identify misconfigurations
- DevOps teams can monitor blast radius of specific resources across AWS organization
- Compliance officers can check security status across multiple AWS accounts
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-security-mcp · Install
Local Setup
- Clone and set up the repository:
``bash git clone https://github.com/groovyBugify/aws-security-mcp.git cd aws-security-mcp uv venv source .venv/bin/activate uv pip install -r requirements.txt ``
- Configure your AWS credentials via SSO or environment variables
- Configure Claude Desktop:
``json { "mcpServers": { "aws-security": { "command": "/path/to/mcp-proxy", "args": ["http://localhost:8000/sse"] } } }``
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