MCP server for Cucumber Studio API integration
If you want an AI assistant working directly with Cucumberstudio MCP, the cucumberstudio mcp mcp server is the bridge. MCP server for Cucumber Studio API integration.
A Model Context Protocol (MCP) server that provides LLM access to Cucumber Studio's testing platform. This server enables AI assistants to retrieve test scenarios, action words, test runs, and project information from Cucumber Studio.
Once connected, the assistant can call these 14 tools directly:
cucumberstudio_list_projects — List all accessible projectscucumberstudio_get_project — Get detailed project informationcucumberstudio_list_scenarios — List scenarios in a projectcucumberstudio_get_scenario — Get detailed scenario informationcucumberstudio_find_scenarios_by_tags — Find scenarios by tagscucumberstudio_list_action_words — List reusable action wordscucumberstudio_get_action_word — Get detailed action word informationcucumberstudio_find_action_words_by_tags — Find action words by tagscucumberstudio_list_test_runs — List test runscucumberstudio_get_test_run — Get detailed test run informationcucumberstudio_get_test_executions — Get individual test resultscucumberstudio_list_builds — List buildscucumberstudio_get_build — Get build detailscucumberstudio_list_execution_environments — List execution environmentsThe server is distributed via npm as cucumberstudio-mcp, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Before the server will start you need to supply 4 environment variables: CUCUMBERSTUDIO_ACCESS_TOKEN, CUCUMBERSTUDIO_CLIENT_ID, CUCUMBERSTUDIO_UID, CUCUMBERSTUDIO_BASE_URL. Keep credentials in your client's env block or a secrets manager rather than committing them.
Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Cucumberstudio MCP sits in that group, and the shape of its toolset — cucumberstudio_list_projects, cucumberstudio_get_project, cucumberstudio_list_scenarios among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| cucumberstudio_list_projects | List all accessible projects |
| cucumberstudio_get_project | Get detailed project information |
| cucumberstudio_list_scenarios | List scenarios in a project |
| cucumberstudio_get_scenario | Get detailed scenario information |
| cucumberstudio_find_scenarios_by_tags | Find scenarios by tags |
| cucumberstudio_list_action_words | List reusable action words |
| cucumberstudio_get_action_word | Get detailed action word information |
| cucumberstudio_find_action_words_by_tags | Find action words by tags |
| cucumberstudio_list_test_runs | List test runs |
| cucumberstudio_get_test_run | Get detailed test run information |
| cucumberstudio_get_test_executions | Get individual test results |
| cucumberstudio_list_builds | List builds |
| cucumberstudio_get_build | Get build details |
| cucumberstudio_list_execution_environments | List execution environments |
{
"mcpServers": {
"cucumberstudio": {
"command": "npx",
"args": ["cucumberstudio-mcp"],
"env": {
"CUCUMBERSTUDIO_ACCESS_TOKEN": "your_token",
"CUCUMBERSTUDIO_CLIENT_ID": "your_client_id",
"CUCUMBERSTUDIO_UID": "your_uid"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| CUCUMBERSTUDIO_ACCESS_TOKEN | Credential the server authenticates with. | Yes |
| CUCUMBERSTUDIO_CLIENT_ID | Configuration value read at startup. | Optional |
| CUCUMBERSTUDIO_UID | Configuration value read at startup. | Optional |
| CUCUMBERSTUDIO_BASE_URL | Endpoint or connection string the server talks to. | Yes |
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Search and read your Drive — Docs, Sheets and files become context your assistant can actually use.
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Stop letting your assistant hallucinate n8n node parameters — this server hands it the real schemas, templates and validation.