TestMyVibes MCP server

Hosted Streamable-HTTP MCP server. Connect any MCP-aware client (Claude Code, Cursor, ChatGPT, Codex, Continue, Cline) and your coding agent can submit AI-driven QA tests against any URL — fix-test-retest in a closed loop.

Endpoint

https://testmyvibes.com/mcp

Transport: streamable-http (also SSE-compatible). Authentication: Authorization: Bearer <tmv_live_*>. Get a key by signing up at https://testmyvibes.com/auth/register; smallest credit pack is $5 (50 credits at $0.10 each).

Browse without auth: initialize, tools/list, resources/list, and prompts/list are callable anonymously so reviewers can audit the catalog before signing up.

Quick install

Claude Code

claude mcp add testmyvibes \
  --transport http \
  --url https://testmyvibes.com/mcp \
  --header "Authorization: Bearer $TMV_API_KEY"

Cursor / Continue

Add to .cursor/mcp.json or ~/.continue/config.json:

{
  "mcpServers": {
    "testmyvibes": {
      "url": "https://testmyvibes.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TMV_API_KEY"
      }
    }
  }
}

Claude Desktop

Edit claude_desktop_config.json:

{
  "mcpServers": {
    "testmyvibes": {
      "command": "npx",
      "args": ["mcp-remote", "https://testmyvibes.com/mcp", "--header", "Authorization: Bearer YOUR_TMV_API_KEY"]
    }
  }
}

What your agent can do

Full MCP tool catalog → (lives + generated from code).

Headline tools:

The fix-test-retest loop in 4 calls

1. submit_test({ url, description, goal, agentInstructions, useTestInbox: true })
   → { jobId }

2. get_test_status({ jobId })   // poll every ~30s

3. get_test_results({ jobId })  // diagnostic envelope: actionTrail,
                                //   consoleErrors, failedRequests,
                                //   screenshots, bugs[]

4. 

5. retest_job({ jobId })        // re-runs same test against latest
                                // deployment — preserves URL, goal,
                                // inbox config
   → loop back to 2

Pricing

1 credit = $0.10 USD. Smallest credit pack is $5 (50 credits). Per-tool pricing on the /pricing page (live from code, never drifts). Volume discount kicks in at the $450 pack.

Sample costs (at $0.10/credit):

For agents bringing your own agent

Tell your coding agent: WebFetch https://testmyvibes.com/docs/coding-agents — the longer integration guide explains the test-retest loop, agentInstructions style, when to pick AI vs human runner, and the diagnostic envelope shape.

Support

support@testmyvibes.com · Support center

Status: Production. Hosted on DigitalOcean, NYC region. ~99.5% uptime over the last 90 days. Stateless transport; one MCP server instance per request. OAuth + per-API-key rate limiting (60 req/min).