AgentHubAgentHub

testrail-mcp-server

MCP ServerMCP Registry官方收录

io.github.uarlouski/testrail-mcp-server · v2.0.0

Model Context Protocol (MCP) server for TestRail platform, enabling LLMs to manage test artifacts.

概览

testrail-mcp-server 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "testrail-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@uarlouski/testrail-mcp-server"
      ],
      "env": {
        "TESTRAIL_INSTANCE_URL": "<TESTRAIL_INSTANCE_URL>",
        "TESTRAIL_USERNAME": "<TESTRAIL_USERNAME>",
        "TESTRAIL_API_KEY": "<TESTRAIL_API_KEY>"
      }
    }
  }
}

环境变量

TESTRAIL_INSTANCE_URL必填

Base URL of your TestRail instance (e.g. https://example.testrail.io)

TESTRAIL_USERNAME必填

Email address used to authenticate with TestRail

TESTRAIL_API_KEY必填secret

API key for authenticating with the TestRail API

TESTRAIL_ENABLE_SHARED_STEPS可选

Enable shared steps management

相关资源

统一 Manifest

{
  "id": "io.github.uarlouski/testrail-mcp-server",
  "type": "mcp-server",
  "version": "2.0.0",
  "displayName": "testrail-mcp-server",
  "description": "Model Context Protocol (MCP) server for TestRail platform, enabling LLMs to manage test artifacts.",
  "repository": {
    "url": "https://github.com/uarlouski/testrail-mcp-server",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@uarlouski/testrail-mcp-server",
        "version": "2.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "TESTRAIL_INSTANCE_URL",
            "description": "Base URL of your TestRail instance (e.g. https://example.testrail.io)",
            "isRequired": true
          },
          {
            "name": "TESTRAIL_USERNAME",
            "description": "Email address used to authenticate with TestRail",
            "isRequired": true
          },
          {
            "name": "TESTRAIL_API_KEY",
            "description": "API key for authenticating with the TestRail API",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "TESTRAIL_ENABLE_SHARED_STEPS",
            "description": "Enable shared steps management"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.uarlouski/testrail-mcp-server",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.uarlouski%2Ftestrail-mcp-server/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
testrail-mcp-server — MCP Server 安装与配置 · AgentHub