an mcp server for the octomind platform
Octomind mcp mcp server lets Claude, Cursor and other MCP clients work with Octomind MCP directly. an mcp server for the octomind platform.
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.
Once connected, the assistant can call these 12 tools directly:
search — Search the Octomind documentation for a given querygetTestCase — Retrieve a test case for a given test target and test case IDexecuteTests — Trigger test execution for a given test target on a specified URLgetEnvironments — List environments for a test targetcreateEnvironment — Create a new environment for a test targetupdateEnvironment — Update an existing environmentdeleteEnvironment — Delete an environmentgetTestReports — Retrieve test reports for a test targetgetTestReport — Get a specific test report by IDdiscovery — Create a test case with a description or promptgetPrivateLocations — List all private locations configured for the organizationgetVersion — Get the current version of the Octomind MCP serverThe server is distributed via npm as @octomind/octomind-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 3 environment variables: APIKEY, OCTOMIND_API_URL, REDIS_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. Octomind MCP sits in that group, and the shape of its toolset — search, getTestCase, executeTests 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 |
|---|---|
| search | Search the Octomind documentation for a given query |
| getTestCase | Retrieve a test case for a given test target and test case ID |
| executeTests | Trigger test execution for a given test target on a specified URL |
| getEnvironments | List environments for a test target |
| createEnvironment | Create a new environment for a test target |
| updateEnvironment | Update an existing environment |
| deleteEnvironment | Delete an environment |
| getTestReports | Retrieve test reports for a test target |
| getTestReport | Get a specific test report by ID |
| discovery | Create a test case with a description or prompt |
| getPrivateLocations | List all private locations configured for the organization |
| getVersion | Get the current version of the Octomind MCP server |
### Cursor (cursor.json)
```json
{
"mcpServers": {
"octomind-mcp": {
"name": "Octomind MCP Server",
"command": "npx",
"args": [
"-y",
"@octomind/octomind-mcp@latest"
],
"env": {
"APIKEY": "your-api-key-here"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| APIKEY | Credential the server authenticates with. | Yes |
| OCTOMIND_API_URL | Endpoint or connection string the server talks to. | Yes |
| REDIS_URL | Endpoint or connection string the server talks to. | Yes |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.