MCP Catalogs
Home

everything vs k6-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
k6-mcp-server
by QAInsights
Stars★ 85,748★ 24
30d uses
Score7736
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsMonitoringOps & Infra
LanguageTypeScriptPython
Last committhis month14 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

k6-mcp-server · Summary

k6 MCP server for load testing integration with AI models through Model Context Protocol.

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

k6-mcp-server · Use cases

  • AI-powered performance test analysis and interpretation
  • Automated regression testing triggered by code changes
  • Performance benchmarking as part of CI/CD pipelines

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

k6-mcp-server · Install

Installation

  1. Clone the repository:
git clone https://github.com/qainsights/k6-mcp-server.git
  1. Install dependencies:
uv pip install -r requirements.txt
  1. Set up environment variables (optional):

Create a .env file with:

K6_BIN=/path/to/k6
  1. Configure in your MCP client (e.g., Claude Desktop):
{
  "mcpServers": {
    "k6": {
      "command": "/path/to/bin/uv",
      "args": [
        "--directory",
        "/path/to/k6-mcp-server",
        "run",
        "k6_server.py"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.