A test runner which will run a test and debug the test failure with a MCP server, allowing coding context to remain clean
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"agentic-test-runner": {
"command": "go",
"args": [
"run",
"github.com/imyousuf/agentic-test-runner@latest"
]
}
}
}
Run in terminal:
claude mcp add agentic-test-runner go run github.com/imyousuf/agentic-test-runner@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"agentic-test-runner": {
"command": "go",
"args": [
"run",
"github.com/imyousuf/agentic-test-runner@latest"
]
}
}
}