Octomind provides a whole e2e platform for test creation, execution and management including auto-fix. With this MCP server you can use Octomind tools and resources in your local development environment and enable it to create new e2e tests, execute them and more. see https://octomind.dev/ and https://octomind.dev/docs/mcp/install-octomind-mcp for more details. The server uses the following enviro
Add this skill
npx mdskills install OctoMind-dev/octomind-mcpComprehensive e2e testing integration with excellent tool coverage and deployment options
1# octomind mcp server: let agents create and manage e2e tests23<img src="images/light.png" alt="Octomind Logo" width="250">45[](https://smithery.ai/server/@OctoMind-dev/octomind-mcp)67Octomind provides a whole e2e platform for test creation, execution and management including auto-fix.8With this MCP server you can use Octomind tools and resources in your local development environment and9enable it to create new e2e tests, execute them and more. see https://octomind.dev/ and10https://octomind.dev/docs/mcp/install-octomind-mcp for more details.1112## See it in action together with testrail mcp1314[](https://www.youtube.com/watch?v=I7lc9I0S62Y)1516## Configuration1718### Environment Variables1920The server uses the following environment variables:2122- `APIKEY` - The API key for Octomind API (required)23- `OCTOMIND_API_URL` - Base URL for the API endpoint to use (defaults to https://app.octomind.dev/api)24- `REDIS_URL` - Redis connection URL for session storage (optional, format: redis://host:port)25- `SESSION_EXPIRATION_SECONDS` - Time in seconds after which sessions expire (optional, Redis only)2627### Command Line Options2829The server supports the following command line options:3031- `-s, --sse` - Enable SSE transport mode32- `-t, --stream` - Enable Streamable HTTP transport mode33- `-c, --clients` - Show client configuration examples34- `-p, --port <port>` - Port to listen on (default: 3000)35- `-r, --redis-url <url>` - Redis URL for session storage36- `-e, --session-expiration <seconds>` - Session expiration time in seconds3738### Session Storage3940The server supports two types of session storage:41421. **In-memory storage** (default) - Sessions are stored in memory and will be lost when the server restarts432. **Redis storage** - Sessions are stored in Redis and can persist across server restarts4445For production deployments, it's recommended to use Redis storage with an appropriate session expiration time. The Redis storage option also enables horizontal scaling with multiple server instances.4647### Logging Configuration4849- `LOG_FILENAME` - The file to write logs to (only for debugging). If not set, logging is disabled50- `LOG_LEVEL` - The log level to use (defaults to info)5152## Tools5354The following tools are implemented in this MCP server:5556- `search` - Search the Octomind documentation for a given query57- `getTestCase` - Retrieve a test case for a given test target and test case ID58- `executeTests` - Trigger test execution for a given test target on a specified URL59- `getEnvironments` - List environments for a test target60- `createEnvironment` - Create a new environment for a test target61- `updateEnvironment` - Update an existing environment62- `deleteEnvironment` - Delete an environment63- `getTestReports` - Retrieve test reports for a test target64- `getTestReport` - Get a specific test report by ID65- `discovery` - Create a test case with a description or prompt66- `getPrivateLocations` - List all private locations configured for the organization67- `getVersion` - Get the current version of the Octomind MCP server6869## Installation7071You can get configuration snippets for different clients by running:7273```bash74npx @octomind/octomind-mcp --clients75```7677This will output configuration examples for Claude Desktop, Cursor, and Windsurf. Here are the configuration files for most clients:7879### Installing via Smithery8081To install octomind-mcp for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@OctoMind-dev/octomind-mcp):8283```bash84npx -y @smithery/cli install @OctoMind-dev/octomind-mcp --client claude85```8687### Claude Desktop (.claude-config.json)88```json89{90 "mcpServers": {91 "octomind-mcp": {92 "name": "Octomind MCP Server",93 "command": "npx",94 "args": [95 "-y",96 "@octomind/octomind-mcp@latest"97 ],98 "env": {99 "APIKEY": "your-api-key-here"100 }101 }102 }103}104```105106### Cursor (cursor.json)107```json108{109 "mcpServers": {110 "octomind-mcp": {111 "name": "Octomind MCP Server",112 "command": "npx",113 "args": [114 "-y",115 "@octomind/octomind-mcp@latest"116 ],117 "env": {118 "APIKEY": "your-api-key-here"119 }120 }121 }122}123```124125### Windsurf (mcp_config.json)126```json127{128 "mcpServers": {129 "octomind-mcp": {130 "name": "Octomind MCP Server",131 "command": "npx",132 "args": [133 "-y",134 "@octomind/octomind-mcp@latest"135 ],136 "environment": {137 "APIKEY": "your-api-key-here"138 }139 }140 }141}142```143144Note: Replace `your-api-key-here` with your actual API key.145146To get an APIKEY see here https://octomind.dev/docs/get-started/execution-without-ci#create-an-api-key147148# Listings / Integrations149150Certified by [MCPHub](https://mcphub.com/mcp-servers/octomind-dev/octomind-mcp)151152<a href="https://glama.ai/mcp/servers/@OctoMind-dev/octomind-mcp">153 <img width="380" height="200" src="https://glama.ai/mcp/servers/@OctoMind-dev/octomind-mcp/badge" alt="octomind-mcp MCP server" />154</a>155156[](https://mseep.ai/app/octomind-dev-octomind-mcp)157158
Full transparency — inspect the skill content before installing.