MCP Catalogs
Home

ai-testing-mcp vs everything

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

ai-testing-mcp
by groovy-web
everything
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score4377
Official
Categories
AI / LLM ToolsDeveloper ToolsMonitoring
Developer ToolsAI / LLM ToolsOther
LanguageTypeScript
Last commit2 mo agothis month

ai-testing-mcp · Summary

Comprehensive MCP server for AI testing, evaluation, and quality assurance with standardized testing methodologies.

everything · Summary

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

ai-testing-mcp · Use cases

  • AI model validation and quality assurance in development pipelines
  • Automated security testing for prompt injection and adversarial attacks
  • Performance benchmarking and optimization for AI systems

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

ai-testing-mcp · Install

# Clone the repository
git clone https://github.com/groovy-web/ai-testing-mcp.git
cd ai-testing-mcp

# Install dependencies
npm install

# Configure environment
cp .env.example .env
# Edit with your API keys

# Start the MCP server
npm start

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "ai-testing": {
      "command": "node",
      "args": ["/path/to/ai-testing-mcp/dist/index.js"],
      "env": {
        "OPENAI_API_KEY": "your-key",
        "ANTHROPIC_API_KEY": "your-key"
      }
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.