Skip to main content
Glama
rizaqpratama

CucumberStudio MCP Server

by rizaqpratama
index.js727 B
const express = require('express'); const mcpController = require('../controllers/mcpController'); const { validateContext, validateApplyChanges } = require('../middlewares/validation'); const router = express.Router(); /** * @route GET /api/context * @desc Get context from CucumberStudio * @access Public */ router.get('/context', validateContext, mcpController.getContext); /** * @route POST /api/apply * @desc Apply changes to CucumberStudio * @access Public */ router.post('/apply', validateApplyChanges, mcpController.applyChanges); /** * @route GET /api/schema * @desc Get schema information * @access Public */ router.get('/schema', mcpController.getSchema); module.exports = router;

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rizaqpratama/mcp-cucumberstudio'

If you have feedback or need assistance with the MCP directory API, please join our Discord server