loading…
Search for a command to run...
loading…
Connect Claude, Cursor, and other AI assistants to your Testmo test management instance to manage test cases, folders, runs, milestones, and CI/CD automation.
Connect Claude, Cursor, and other AI assistants to your Testmo test management instance to manage test cases, folders, runs, milestones, and CI/CD automation.
A Python Model Context Protocol (MCP) server for Testmo — bring AI-assisted test management to Claude Desktop, Cursor, and any MCP-compatible client.
Testmo MCP is an open-source MCP server that connects AI assistants like Claude Desktop, Claude Code, and Cursor directly to your Testmo test management instance. Manage test cases, folders, milestones, runs, attachments, and CI/CD automation sources — all through natural language, without leaving your AI client.
Built for QA engineers, SDETs, and developers who use Testmo and want to stop clicking through the UI for repetitive work. Powered by FastMCP and the Testmo REST API.
git clone https://github.com/strelec00/testmo-mcp.git
cd testmo-mcp
uv sync
Edit your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"testmo": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/testmo-mcp",
"run",
"testmo-mcp.py"
],
"env": {
"TESTMO_URL": "https://your-instance.testmo.net",
"TESTMO_API_KEY": "your-api-key"
}
}
}
}
Restart Claude Desktop. The Testmo tools will appear in the MCP tools list.
Open Cursor Settings → MCP (or edit ~/.cursor/mcp.json) and use the same JSON snippet.
uv run mcp dev testmo-mcp.py
Once connected, try asking your AI assistant:
/Users/jan/Desktop/screenshot.png as an attachment to test case 1234."Traditional Testmo workflows require navigating the UI for every test case, every folder, every bulk update. With Testmo MCP, your AI assistant becomes a QA co-pilot:
| Tool | Description |
|---|---|
testmo_list_projects |
List all projects |
testmo_get_project |
Get project details |
| Tool | Description |
|---|---|
testmo_list_folders |
List all folders in a project with full paths |
testmo_get_folder |
Get details of a specific folder |
testmo_create_folder |
Create a new folder (optionally nested under parent) |
testmo_update_folder |
Update folder name, parent, docs, or display order |
testmo_delete_folder |
⚠️ Delete a folder — also permanently deletes all test cases inside |
testmo_find_folder_by_name |
Find a folder by name within a project |
⚠️
testmo_delete_folderis irreversible. Deleting a folder removes all test cases it contains, including cases in nested subfolders. There is no trash or undo — verify the folder contents before deleting.
| Tool | Description |
|---|---|
testmo_list_milestones |
List milestones |
testmo_get_milestone |
Get milestone details |
| Tool | Description |
|---|---|
testmo_list_cases |
List cases (paginated) |
testmo_get_all_cases |
Get all cases (auto-pagination) |
testmo_get_case |
Get single case details |
testmo_create_case |
Create one case |
testmo_create_cases |
Create up to 100 cases |
testmo_batch_create_cases |
Create unlimited cases (auto-batched) |
testmo_update_case |
Update one case |
testmo_batch_update_cases |
Bulk update up to 100 cases |
testmo_delete_case |
Delete one case |
testmo_batch_delete_cases |
Delete multiple cases (auto-batched) |
testmo_search_cases |
Search cases with filters |
| Tool | Description |
|---|---|
testmo_list_runs |
List test runs |
testmo_get_run |
Get run details |
testmo_list_run_results |
List run results with filters |
| Tool | Description |
|---|---|
testmo_list_case_attachments |
List attachments on a test case |
testmo_upload_case_attachment |
Upload a single file (auto-compress) |
testmo_upload_case_attachments |
Upload up to 20 files at once |
testmo_delete_case_attachments |
Delete one or more attachments |
⚠️
testmo_upload_case_attachmentandtestmo_upload_case_attachmentsrequire an absolute local file path (e.g./Users/jan/Desktop/screenshot.pngon macOS orC:\Users\jan\Desktop\screenshot.pngon Windows). The file must already exist on disk — image data pasted into the conversation or screenshots taken within the AI client cannot be uploaded directly. Save the file to disk first, then provide the full path.After uploading, use
testmo_list_case_attachmentsto retrieve the attachment URL (e.g.https://your-instance.testmo.net/attachments/view/9) and confirm the upload succeeded.
| Tool | Description |
|---|---|
testmo_list_automation_sources |
List CI/CD sources |
testmo_get_automation_source |
Get source details |
testmo_list_automation_runs |
List automation runs |
testmo_get_automation_run |
Get automation run details |
testmo_create_automation_run |
Create automation run |
testmo_append_automation_run |
Append artifacts/fields/links |
testmo_complete_automation_run |
Complete automation run |
testmo_create_automation_run_thread |
Create parallel thread |
testmo_append_automation_run_thread |
Submit test results to thread |
testmo_complete_automation_run_thread |
Complete thread |
| Tool | Description |
|---|---|
testmo_list_issue_connections |
List integrations (GitHub, Jira, etc.) |
testmo_get_issue_connection |
Get integration details |
| Tool | Description |
|---|---|
testmo_get_folders_recursive |
Get full folder tree from a root |
testmo_get_cases_recursive |
Get all cases across a folder subtree |
testmo_search_cases_recursive |
Search cases within a folder subtree |
| Tool | Description |
|---|---|
testmo_get_field_mappings |
Get field value IDs (priorities, types, states) |
testmo_get_web_url |
Generate a Testmo web URL for any resource |
"Tool not found" in Claude Desktop
Use an absolute path in args and fully restart Claude Desktop after editing the config.
401 Unauthorized
Double-check TESTMO_API_KEY and that the key has API access enabled in Testmo under Settings → API Keys.
uv: command not found
Install uv: curl -LsSf https://astral.sh/uv/install.sh | sh
PRs welcome. Open an issue first for larger changes.
MIT
Keywords: testmo mcp, testmo claude, testmo ai integration, mcp server testmo, model context protocol testmo, testmo python, testmo api client, fastmcp testmo, ai test management, qa automation claude, testmo cursor, testmo automation api, testmo bulk create cases, anthropic mcp servers
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"testmo-mcp": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.