@deitum/testops-mcp
MCP server for Allure TestOps that enables searching, reading, and writing test cases, authoring and importing test suites in Markdown, managing launches, and retrieving project statistics, all scoped to a single configured project.
README
@deitum/testops-mcp
An MCP server for Allure TestOps: search, read and write test cases, author a whole suite in Markdown and import it in one call, manage launches, and read project statistics — all locked to a single project.
npx @deitum/testops-mcp
It speaks MCP over stdio and is configured entirely through environment variables.
The server is deliberately single-project: TESTOPS_PROJECT_ID is the only source of the target
project, it is never part of a tool's input, and the model cannot reach another project by asking.
Pointing it somewhere else means changing the configuration and restarting.
Setting it up in a client
Claude Desktop (claude_desktop_config.json), Cursor, Windsurf and anything else that
reads the same shape:
{
"mcpServers": {
"testops": {
"command": "npx",
"args": ["-y", "@deitum/testops-mcp"],
"env": {
"TESTOPS_BASE_URL": "https://testops.example.com",
"TESTOPS_API_KEY": "your-api-token",
"TESTOPS_PROJECT_ID": "23",
"TESTOPS_IMPORT_ROOTS": "/Users/you/test-cases"
}
}
}
}
Claude Code:
claude mcp add testops \
--env TESTOPS_BASE_URL=https://testops.example.com \
--env TESTOPS_API_KEY=your-api-token \
--env TESTOPS_PROJECT_ID=23 \
-- npx -y @deitum/testops-mcp
VS Code (.mcp.json / .vscode/mcp.json), where the token is prompted for rather than written
down:
{
"inputs": [
{
"id": "testops-token",
"type": "promptString",
"description": "Allure TestOps API token",
"password": true
}
],
"servers": {
"testops": {
"command": "npx",
"args": ["-y", "@deitum/testops-mcp"],
"env": {
"TESTOPS_BASE_URL": "https://testops.example.com",
"TESTOPS_API_KEY": "${input:testops-token}",
"TESTOPS_PROJECT_ID": "23"
}
}
}
}
OpenCode (~/.config/opencode/opencode.json, or %USERPROFILE%\.config\opencode\opencode.json
on Windows). Note that permission sits beside mcp, not inside it:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"testops": {
"type": "local",
"enabled": true,
"command": ["npx", "-y", "@deitum/testops-mcp"],
"environment": {
"TESTOPS_BASE_URL": "https://testops.example.com",
"TESTOPS_API_KEY": "your-api-token",
"TESTOPS_PROJECT_ID": "23",
"TESTOPS_IMPORT_ROOTS": "/Users/you/test-cases"
}
}
},
"permission": {
"testops_testcase_delete": "ask"
}
}
The API token comes from TestOps itself: your avatar → API Tokens → + Token.
Configuration
| Variable | Required | Meaning |
|---|---|---|
TESTOPS_BASE_URL |
yes | TestOps root, no path (https://testops.example.com). |
TESTOPS_API_KEY |
yes | Personal API token, exchanged for a bearer token on first use. |
TESTOPS_PROJECT_ID |
yes | The one project every tool operates in. |
TESTOPS_IMPORT_ROOTS |
– | Directories Markdown import may read, PATH-separated. Default: the cwd. |
TESTOPS_JIRA_BASE_URL |
– | Jira root for issue links. Unset, the issue-link paths refuse to write. |
TESTOPS_SSL_VERIFY |
– | false disables TLS verification. Default on; see TLS. |
TESTOPS_BASE_URL must be https outside localhost and must carry no credentials, query, fragment
or path. TESTOPS_JIRA_BASE_URL follows the same rules but may carry a path, since Jira is often
published under one (https://jira.example.com/jira).
Issue links
Issue keys — from testcase_add_issue_links, or from a Ссылки / Issues section in an imported
file — become external links of the form <TESTOPS_JIRA_BASE_URL>/browse/KEY. They are external
links, not integrated TestOps Issues.
With no Jira root configured the server does not guess a host: testcase_add_issue_links fails
before it writes anything, and an import file containing issue keys is rejected during preflight, so
no case is created.
TLS
An instance behind a certificate Node does not trust fails with SELF_SIGNED_CERT_IN_CHAIN. Prefer
NODE_EXTRA_CA_CERTS=/path/to/ca.pem, which trusts that one chain. TESTOPS_SSL_VERIFY=false is
the blunt alternative — it turns verification off for every TestOps request the process makes — and
is worth it only for an internal instance whose certificate you have already accepted by other
means.
Safety model
- One project. Every project-scoped request carries the configured ID, injected by the client rather than taken from the model. Before a by-ID write, the entity is loaded and refused if it belongs to another project.
- Deletion means Trash.
testcase_deletemoves exactly one case — named exactly astestcase_getreturned it — to Trash (force=false). There is no bulk and no permanent delete, and deletion is never used as an import rollback. - Writes are never replayed on their own. After an expired token only reads are retried. A write whose outcome is unknown is reported as unknown: the model is told to reconcile and wait, not to try again.
- Import is preflighted, then non-transactional. Nothing is created until the whole file and the
project's custom-field catalog have been validated. After that, cases are created one at a time:
if one fails, the earlier ones remain, and the report says exactly which are
created,partiallyCreated,failedCaseandnotAttempted.
Authoring and importing Markdown
A whole suite can be written as one Markdown file and imported in a single call. The format carries a description, preconditions, nested steps with individual expected results, tags, issue keys and custom fields addressed by their human-readable names — the server resolves those against the project's catalog.
The intended flow is: ask the model for the file, read it yourself, then ask for the import. The
rules do not need to be pasted into the conversation — testcase_markdown_guide hands the model the
canonical format and a worked example, and the model is instructed to call it before writing or
repairing a file. A file that is already written goes straight to testcase_import_markdown.
The file must be an absolute path inside one of TESTOPS_IMPORT_ROOTS. For a human reference:
the format and
the example.
Tools
Test cases:
testcase_search— one page of active cases by partial name and exact workflow status.testcase_get— one test case by ID.testcase_steps— a case's scenario tree, its steps and expected results.testcase_history— a case's execution history.testcase_search_by_custom_field— one server-side search by exact custom-field name and value.testcase_custom_fields— the project's custom fields and their allowed values.testcase_markdown_guide— the Markdown rules and the example, for the model to write against.testcase_import_markdown— validate a Markdown file and import every case in it.testcase_create— create one simple test case.testcase_add_steps— append steps, each with its own expected results.testcase_set_tags— replace a case's whole tag set.testcase_add_issue_links— add Jira keys as external links on one active case.testcase_delete— move exactly one confirmed case to Trash.testcase_trash_search— find deleted cases by ID or by name.testcase_restore— restore exactly one case chosen by ID and name.
Launches:
launch_list— one page of launches.launch_get— one launch by ID.launch_create— create a launch.launch_update— rename a launch, given its exact current name.launch_statistic— a launch's result counts by status.launch_test_results— one page of a launch's test results, active or deleted, each with its own status.
Project:
statistics_overall— launch and test-case counts, and the automation percentage.
Search tools return one requested page with its metadata and accept at most 50 items, so a large project cannot land in the model's context whole. The AQL behind a search is built by the server: no tool accepts a raw query.
Troubleshooting
| Symptom | What it means |
|---|---|
Failed to get bearer token |
TESTOPS_API_KEY is wrong, revoked, or from another instance. |
SELF_SIGNED_CERT_IN_CHAIN |
Node does not trust the chain; see TLS. |
belongs to project N, but this server is configured… |
The case exists, but not in TESTOPS_PROJECT_ID. |
Set TESTOPS_JIRA_BASE_URL |
Issue keys were used with no Jira root configured. |
Markdown file is outside the configured import roots |
The path is not under TESTOPS_IMPORT_ROOTS. |
status: refused from an import |
Preflight failed and nothing was created; the report says why. |
Using it as a library
The stdio binary is the point, but the server is exported too — for a custom transport or a test harness:
import { createTestOpsServer, loadConfig, TestOpsClient } from '@deitum/testops-mcp';
const config = loadConfig();
const client = new TestOpsClient(config.baseUrl, config.apiKey, config.projectId, {
sslVerify: config.sslVerify,
});
const server = createTestOpsServer(client, { allowedMarkdownRoots: config.importRoots });
await server.connect(myTransport);
Development
npm install
npm run verify # lint, format, types, tests, build, packaging
npm test # vitest, no network — every TestOps call goes to a local fixture
npm run inspector # build, then drive it with the MCP inspector
See CONTRIBUTING.md.
Licence
MIT.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。