aws-security-mcp vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
aws-security-mcp by groovyBugify | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 76 |
| Official | — | ✓ |
| Categories | SecurityOps & InfraAI / LLM Tools | Web ScrapingAI / LLM ToolsProductivity |
| 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.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
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
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
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"] } } }``
fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}