mcp-cucumberstudio

rizaqpratama/mcp-cucumberstudio

3.1

If you are the rightful owner of mcp-cucumberstudio and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The CucumberStudio MCP Server provides a Model Context Protocol server for integrating AI operations with CucumberStudio data.

The CucumberStudio MCP Server is designed to facilitate AI-powered applications by providing a Model Context Protocol (MCP) server that interfaces with the CucumberStudio API. This server allows applications to fetch data from CucumberStudio, offering context about projects, features, scenarios, and other resources. It enables AI to generate and modify test scenarios and features, enhancing the capabilities of AI assistants in managing CucumberStudio resources. The server is built to follow the MCP specification and integrates seamlessly with the CucumberStudio API, ensuring efficient data handling and operations.

Features

  • Fetch data from CucumberStudio API
  • Provide context about CucumberStudio projects and resources
  • Enable AI to generate and modify test scenarios
  • Integrate with CucumberStudio API for seamless operations
  • Follow Model Context Protocol specification

Usages

usage with local development

{
  "mcp": {
    "servers": {
      "cucumberstudio": {
        "command": "node",
        "args": [
          "server.js"
        ]
      }
    }
  }
}

usage with docker

{
  "mcp": {
    "servers": {
      "cucumberstudio": {
        "command": "docker",
        "args": [
          "run",
          "--rm",
          "-p",
          "3000:3000",
          "cucumberstudio-mcp-server"
        ]
      }
    }
  }
}