Connections & Capabilities
Connects To
Capabilities
Quickstart
Install
npx @octomind/octomind-mcp --clientsConfig
{
"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)
searchSearches the Octomind documentation for a given query.
Read-only operation with no side effects.
getTestCaseRetrieves a test case for a given test target and test case ID.
Read-only operation; retrieves existing data.
executeTestsTriggers test execution for a given test target on a specified URL.
Executes tests, potentially modifying the state of the target system.
getEnvironmentsLists environments for a test target.
Read-only operation; lists existing environments.
createEnvironmentCreates a new environment for a test target.
Creates a new environment, potentially consuming resources.
updateEnvironmentUpdates an existing environment.
Modifies an existing environment, potentially disrupting tests.
deleteEnvironmentDeletes an environment.
Deletes an environment, potentially disrupting tests and losing configuration.
getTestReportsRetrieves test reports for a test target.
Read-only operation; retrieves existing reports.
getTestReportGets a specific test report by ID.
Read-only operation; retrieves a specific report.
discoveryCreates a test case with a description or prompt.
Creates a new test case, potentially consuming resources.
getPrivateLocationsLists all private locations configured for the organization.
Read-only operation; lists existing locations.
getVersionGets 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.
