aguara vs everything
Side-by-side comparison to help you pick between these two MCP servers.
aguara by garagon | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 77 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | this month | this month |
aguara · Summary
Security scanner for AI agent skills and MCP servers that detects prompt injection, data exfiltration, and supply-chain attacks before deployment.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
aguara · Use cases
- Scan MCP server directories for security vulnerabilities before deployment
- Validate AI agent skills for prompt injection and data exfiltration risks
- Integrate security scanning into CI/CD pipelines with fail-on thresholds
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
aguara · Install
Install Aguara with the following methods:
# Quick install
curl -fsSL https://raw.githubusercontent.com/garagon/aguara/main/install.sh | sh
# Homebrew
brew install garagon/tap/aguara
# Docker
# Scan current directory
docker run --rm -v "$(pwd)":/scan ghcr.io/garagon/aguara scan /scan
# From source
go install github.com/garagon/aguara/cmd/aguara@latestTo use Aguara MCP server (referenced in the README but not fully specified):
Note: MCP server configuration appears to be through Aguara's scanning capabilities rather than exposing MCP tools/resources itself.
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