oci docker.io/kubeshop/mcp-server:2.9.1stdioupdated 7d ago
Testkube provides a single platform for defining, running and analyzing automated tests, using your existing testing tools/scripts, running in your Kubernetes infrastructure.
O que dá para fazer com testkube mcp?
The Open Testing Platform for AI-driven Engineering Teams
Testkube provides a single platform for defining, running and analyzing automated tests, using your existing testing tools/scripts, running in your Kubernetes infrastructure.
Trusted by Engineering Teams at CoreWeave, NVidia, Siemens, T-Mobile, Harvard, SwissCom, and many more..
Website | Docs | Changelog | Blog | Slack | LinkedIn | X
Why Testkube?
- Run any Tests : Execute any tests/tools/scripts at scale; API, E2E, Performance, Security, Infrastructure, etc. - Examples & Guides.
- Trigger Tests whenever needed: Trigger tests manually, on schedules, from CI/CD/GitOps pipelines, on Kubernetes Events, via the REST API, through MCP, etc. - Read More.
- See Everything: All test results, artifacts, logs and resource-metrics are aggregated for centralized troubleshooting and reporting - Read More.
- Integrate Natively: Testkube integrates with existing tools and infrastructure using Webhooks, the Testkube REST API or the MCP Server - see Integration Examples.
- Testkube AI: Use the Testkube MCP Server or native AI Agents for troubleshooting, analysis, remediation, etc - Read More
- Enterprise Ready: SSO/SCIM, RBAC, Teams, Resource-Groups, Audit-logs, etc. - Read More.

See it in action: Open the interactive TestWorkflows showcase to see how a workflow builds up from a single test to a fully orchestrated pipeline.
Two ways to run Testkube
Open Source Agent - this repo.
MIT-licensed, runs standalone in your Kubernetes cluster, no control plane required. Great for single-cluster setups, self-managed environments, and evaluating Testkube.
- The Helm or CLI Installation will make it easy to deploy the agent into your target cluster.
- The Quickstart is the easiest way to set up Testkube and run your first tests.
Check out the Testkube Open Source Overview to learn more about the open source deployment architecture.
Commercial Control Plane
The control plane connects every Testkube agent across clusters, teams, and environments into a single dashboard:
- One control plane, unlimited clusters - orchestrate and analyze tests across clusters and regions
- Testkube AI - workflow generation, failure investigation, remediation PRs
- Enterprise-grade - SSO/SCIM, RBAC, audit logs, SLA-backed support
Check out the Installation Overview to learn more about different ways to deploy and run the Testkube Control Plane.
The online Trial is the easiest way to try the commercial Testkube offering - Get Started
Marketplace
The Testkube Marketplace provides an open and ready-to-use catalog of Testkube Workflows for Infrastructure Testing - Read More.
Documentation
Extensive documentation is available at docs.testkube.io.
Contributing
Check out our Contributors Guide and the Agent Architecture to find your way around our codebase and process.
If you want to contribute code, this reading order works well:
- CONTRIBUTING.md - contribution workflow, coding standards, and PR process
- DEVELOPMENT.md - local setup with Tilt and day-to-day development loop
- ARCHITECTURE.md - high-level system design and key code paths
Shout-out to our contributors 🎉 - you're great!
- ⭐️ @lreimer - K6 executor Gradle executor Maven executor
- ⭐️ @jdborneman-terminus - Ginkgo executor
- ️⭐️ @abhishek9686
- ⭐️ @ancosma
- ⭐️ @Stupremee
- ⭐️ @artem-zherdiev-ingio
- ⭐️ @chooco13 - Playwright executor
Go to contribution document to read more how can you help us 🔥
Feedback
Whether Testkube helps you or not, we would love to help and hear from you. Please join us on Slack to ask questions and let us know how we can make Testkube even better!
Instalação
Adicione testkube mcp ao seu cliente. Escolha o que você usa.
claude mcp add docker-io-kubeshop-mcp-server-2-9-1 -- docker run -i --rm docker.io/kubeshop/mcp-server:2.9.1codex mcp add docker-io-kubeshop-mcp-server-2-9-1 -- docker run -i --rm docker.io/kubeshop/mcp-server:2.9.1amp mcp add docker-io-kubeshop-mcp-server-2-9-1 -- docker run -i --rm docker.io/kubeshop/mcp-server:2.9.1{
"mcpServers": {
"docker-io-kubeshop-mcp-server-2-9-1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kubeshop/mcp-server:2.9.1"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"docker-io-kubeshop-mcp-server-2-9-1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kubeshop/mcp-server:2.9.1"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"docker-io-kubeshop-mcp-server-2-9-1","command":"docker","args":["run","-i","--rm","docker.io/kubeshop/mcp-server:2.9.1"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"docker-io-kubeshop-mcp-server-2-9-1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kubeshop/mcp-server:2.9.1"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"docker-io-kubeshop-mcp-server-2-9-1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kubeshop/mcp-server:2.9.1"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"docker-io-kubeshop-mcp-server-2-9-1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kubeshop/mcp-server:2.9.1"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"docker-io-kubeshop-mcp-server-2-9-1": {
"type": "local",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kubeshop/mcp-server:2.9.1"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"docker-io-kubeshop-mcp-server-2-9-1": {
"command": {
"path": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kubeshop/mcp-server:2.9.1"
]
}
}
}
}Add to your Zed `settings.json`.
docker run -i --rm docker.io/kubeshop/mcp-server:2.9.1Run `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Pontuação
39 / 100
Incompleta
- Documentação19/25
- Manutenção25/25
- Confiança9/20
- Capacidade0/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 2.9.1Mais recente | 24 de abr. de 2026 |
| 2.9.0 | 23 de abr. de 2026 |
| 2.8.1 | 30 de mar. de 2026 |
| 2.8.0 | 26 de mar. de 2026 |
| 2.7.0 | 4 de mar. de 2026 |
| 2.6.1 | 12 de fev. de 2026 |
| 2.4.3 | 27 de nov. de 2025 |
| 1.0.1 | 23 de out. de 2025 |
| 1.0.0 | 23 de out. de 2025 |