MCP Catalogs
Home

cucumberstudio-mcp vs everything

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

cucumberstudio-mcp
by HeroSizy
everything
by modelcontextprotocol
Stars★ 21★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

cucumberstudio-mcp · Summary

MCP Server for Cucumber Studio providing access to test scenarios, action words, and test runs from the testing platform.

everything · Summary

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

cucumberstudio-mcp · Use cases

  • AI assistants can retrieve test scenarios to analyze test coverage and suggest improvements
  • Access action words to automate test case creation in conversations
  • Monitor test execution results and identify failing tests for immediate attention

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

cucumberstudio-mcp · Install

Installation

Desktop Extension (Recommended)
  1. Download the latest .mcpb file from the [releases page](https://github.com/HeroSizy/cucumberstudio-mcp/releases)
  2. Import the extension in your compatible AI desktop application
  3. Configure your Cucumber Studio API credentials through the extension settings
Quick Start (Command Line)
npx cucumberstudio-mcp
Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "cucumberstudio": {
      "command": "npx",
      "args": ["cucumberstudio-mcp"],
      "env": {
        "CUCUMBERSTUDIO_ACCESS_TOKEN": "your_token",
        "CUCUMBERSTUDIO_CLIENT_ID": "your_client_id",
        "CUCUMBERSTUDIO_UID": "your_uid"
      }
    }
  }
}

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.