Back to MCP Directory
Octomind
Model Context Protocol moderate risk

Octomind

Octomind MCP server enables agents to create, execute, and manage end-to-end tests within a local development environment, leveraging Octomind's platform.

Connections & Capabilities

Connects To

Redis

Capabilities

readwriteexecadmin

Quickstart

Install

npx @octomind/octomind-mcp --clients

Config

{
  "mcpServers": {
    "octomind-mcp": {
      "name": "Octomind MCP Server",
      "command": "npx",
      "args": [
        "-y",
        "@octomind/octomind-mcp@latest"
      ],
      "env": {
        "APIKEY": "your-api-key-here"
      }
    }
  }
}

Exposed MCP Tools (12)

safe
search

Searches the Octomind documentation for a given query.

Read-only operation with no side effects.

safe
getTestCase

Retrieves a test case for a given test target and test case ID.

Read-only operation; retrieves existing data.

high
executeTests

Triggers test execution for a given test target on a specified URL.

Executes tests, potentially modifying the state of the target system.

safe
getEnvironments

Lists environments for a test target.

Read-only operation; lists existing environments.

moderate
createEnvironment

Creates a new environment for a test target.

Creates a new environment, potentially consuming resources.

high
updateEnvironment

Updates an existing environment.

Modifies an existing environment, potentially disrupting tests.

high
deleteEnvironment

Deletes an environment.

Deletes an environment, potentially disrupting tests and losing configuration.

safe
getTestReports

Retrieves test reports for a test target.

Read-only operation; retrieves existing reports.

safe
getTestReport

Gets a specific test report by ID.

Read-only operation; retrieves a specific report.

moderate
discovery

Creates a test case with a description or prompt.

Creates a new test case, potentially consuming resources.

safe
getPrivateLocations

Lists all private locations configured for the organization.

Read-only operation; lists existing locations.

safe
getVersion

Gets the current version of the Octomind MCP server.

Read-only operation; retrieves server version information.

Safety Assessment

The Octomind MCP server offers a mix of read and write operations. It's relatively safe for read-only operations like searching documentation or retrieving test reports. However, creating, updating, or deleting environments and executing tests pose a higher risk and should be carefully monitored.

  • Requires API key for authentication.
  • Provides tools for managing test environments.
  • Includes read-only tools like search and getTestReport.
  • Allows test execution, which could potentially impact external systems.
  • Provides tools for creating, updating, and deleting test environments.
  • API key compromise could lead to unauthorized test management.