Skip to main content

MCP Validator Pro

Automated MCP validation for teams shipping to production. API key, CI/CD integration, AI-powered fix suggestions.

$49/month
FeatureFreePro $49/mo
Validation checks
9 checks9 checks
API access
Web UI onlyREST API + API key
CI/CD integration
Public endpointAuthenticated endpoint
AI fix suggestions
Preview (2 fixes)All fixes + fixed JSON
Batch validation
1 tool at a timeUnlimited tools per request
Rate limit
10 req/minUnlimited

API Usage

After subscribing, use your Stripe subscription ID as your API key:

curl https://wildrunai.com/api/pro/validate \
  -X POST \
  -H "Content-Type: application/json" \
  -H "x-api-key: sub_YOUR_SUBSCRIPTION_ID" \
  -d '{"tools": [...]}'

GitHub Actions

- name: Validate MCP tools
  run: |
    RESULT=$(curl -sf https://wildrunai.com/api/pro/validate \
      -X POST \
      -H "x-api-key: ${{ secrets.MCP_PRO_KEY }}" \
      -H "Content-Type: application/json" \
      -d "{\"tools\": $(cat mcp-tools.json | jq '.tools')}")
    echo "Grade: $(echo $RESULT | jq -r '.grade')"
    [ "$(echo $RESULT | jq -r '.valid')" = "true" ] || exit 1

Response

{
  "valid": true,
  "score": 95,
  "grade": "A",
  "toolCount": 5,
  "tools": [...],
  "globalChecks": [...],
  "plan": "pro"
}

FAQ

What's my API key?

Your Stripe subscription ID (starts with sub_). You'll find it in your Stripe confirmation email. Pass it as x-api-key header.

Can I cancel anytime?

Yes. Cancel through Stripe — your access continues until the end of the billing period.

What if I just need a one-time fix?

Use the free validator and pay $9 for the AI-generated fixed JSON. No subscription needed.

Do you store my tool definitions?

No. Validation is stateless — we process your request and return results. Nothing is stored.