MCP Catalogs
Home

cucumberstudio-mcp vs filesystem

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

cucumberstudio-mcp
by HeroSizy
filesystem
by modelcontextprotocol
Stars★ 21★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.