bzm-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
bzm-mcp by Blazemeter | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMonitoringOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
bzm-mcp · Summary
BlazeMeter MCP server enables AI-driven performance testing via natural language commands.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
bzm-mcp · Use cases
- Automating load test creation and execution through AI assistants
- Generating performance test reports via natural language requests
- Managing BlazeMeter test infrastructure programmatically using AI agents
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
bzm-mcp · Install
Installation Options
**Binary Installation (Recommended)**
- Download the binary for your OS from [Releases](https://github.com/BlazeMeter/bzm-mcp/releases)
- Place the binary in the same folder as your
api-keys.jsonfile - Run the binary to launch the interactive configuration tool
**Source Code Installation with uv**
{
"mcpServers": {
"BlazeMeter MCP": {
"command": "uvx",
"args": [
"--from", "git+https://github.com/BlazeMeter/bzm-mcp.git@v1.0.1",
"-q", "bzm-mcp", "--mcp"
],
"env": {
"BLAZEMETER_API_KEY": "/path/to/your/api-key.json"
}
}
}
}**Docker Installation**
{
"mcpServers": {
"BlazeMeter MCP": {
"command": "docker",
"args": [
"run",
"--pull=always",
"--rm",
"-i",
"-e", "API_KEY_ID=your_api_key_id",
"-e", "API_KEY_SECRET=your_api_key_secret",
"ghcr.io/blazemeter/bzm-mcp: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