GreenboneMCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
GreenboneMCP by matteocolazilli | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 35 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
GreenboneMCP · Summary
MCP server connecting AI to Greenbone/OpenVAS vulnerability management via GMP.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
GreenboneMCP · Use cases
- AI-assisted vulnerability scanning management
- Automated security report analysis
- Comparing scan results across different vulnerability assessments
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
GreenboneMCP · Install
Installation
- Clone the repository:
git clone https://github.com/matteocolazilli/GreenboneMCP.git
cd GreenboneMCP- Build the MCP image:
docker build -t greenbonemcp:latest .- Create
.envconfiguration:
cp .env.example .envEdit .env with your credentials and settings.
- Run the server:
docker run --rm -i --env-file <path-to-your-env-file> --name greenbonemcp --volume greenbone-community-edition_gvmd_socket_vol:/run/gvmd greenbonemcp:latestFor Claude Desktop, add to config.json:
{
"mcpServers": {
"greenbone": {
"command": "docker",
"args": ["run", "--rm", "-i", "--env-file", "/path/to/.env", "--volume", "greenbone-community-edition_gvmd_socket_vol:/run/gvmd", "greenbonemcp:latest"]
}
}
}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