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 | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this 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)
- Download the latest
.mcpbfile from the [releases page](https://github.com/HeroSizy/cucumberstudio-mcp/releases) - Import the extension in your compatible AI desktop application
- Configure your Cucumber Studio API credentials through the extension settings
Quick Start (Command Line)
npx cucumberstudio-mcpClaude 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