AgentHubAgentHub

testkube-mcp

MCP ServerMCP Registry官方收录

io.github.kubeshop/testkube-mcp · v2.9.1

MCP server for Testkube - Manage test workflows, executions, and artifacts via AI assistants

概览

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

安装

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

{
  "mcpServers": {
    "testkube-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/kubeshop/mcp-server:2.9.1"
      ],
      "env": {
        "TK_ACCESS_TOKEN": "<TK_ACCESS_TOKEN>",
        "TK_ORG_ID": "<TK_ORG_ID>",
        "TK_ENV_ID": "<TK_ENV_ID>"
      }
    }
  }
}

环境变量

TK_ACCESS_TOKEN必填secret

Testkube access token for authentication

TK_ORG_ID必填

Testkube organization ID

TK_ENV_ID必填

Testkube environment ID

TK_CONTROL_PLANE_URL可选

Testkube Control Plane URL (default: https://api.testkube.io)

TK_DASHBOARD_URL可选

Testkube Dashboard URL

TK_DEBUG可选

Enable debug mode (default: false)

TK_MCP_TRANSPORT可选

MCP transport type: stdio or shttp (default: stdio)

TK_MCP_SHTTP_HOST可选

SHTTP host when using shttp transport

TK_MCP_SHTTP_PORT可选

SHTTP port when using shttp transport

相关资源

统一 Manifest

{
  "id": "io.github.kubeshop/testkube-mcp",
  "type": "mcp-server",
  "version": "2.9.1",
  "displayName": "testkube-mcp",
  "description": "MCP server for Testkube - Manage test workflows, executions, and artifacts via AI assistants",
  "repository": {
    "url": "https://github.com/kubeshop/testkube",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "docker.io/kubeshop/mcp-server:2.9.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "TK_ACCESS_TOKEN",
            "description": "Testkube access token for authentication",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "TK_ORG_ID",
            "description": "Testkube organization ID",
            "isRequired": true
          },
          {
            "name": "TK_ENV_ID",
            "description": "Testkube environment ID",
            "isRequired": true
          },
          {
            "name": "TK_CONTROL_PLANE_URL",
            "description": "Testkube Control Plane URL (default: https://api.testkube.io)"
          },
          {
            "name": "TK_DASHBOARD_URL",
            "description": "Testkube Dashboard URL"
          },
          {
            "name": "TK_DEBUG",
            "description": "Enable debug mode (default: false)"
          },
          {
            "name": "TK_MCP_TRANSPORT",
            "description": "MCP transport type: stdio or shttp (default: stdio)"
          },
          {
            "name": "TK_MCP_SHTTP_HOST",
            "description": "SHTTP host when using shttp transport"
          },
          {
            "name": "TK_MCP_SHTTP_PORT",
            "description": "SHTTP port when using shttp transport"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.kubeshop/testkube-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.kubeshop%2Ftestkube-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
testkube-mcp — MCP Server 安装与配置 · AgentHub