Scan MCP skills and servers for security threats — programmatically via REST, or as MCP tools for AI agents. Every number on this page reflects the real, current API — not aspirational endpoints.
REST API
MCP Server
Free Endpoints $0.00
No payment required, no API key needed.
POST/api/v1/clawscan/full-scantier: free
Instant 25-pattern grammar scan on SKILL.md content. Set "tier": "free" in the body — the same endpoint also runs the paid tiers below.
List all 25 grammar-based threat patterns ClawScan checks for.
Paid Endpoints USDC via x402
Send an x-payment-token header. Without one, these return HTTP 402 with pricing info instead of the scan result.
POST/api/v1/clawscan/full-scan$0.02 – $0.10
Same endpoint as the free tier — set "tier": "standard" ($0.02, adds VirusTotal hash checks on bundled files) or "tier": "deep" ($0.10, adds Opus/Sonnet AI semantic analysis — catches hidden instructions, credential harvesting, social engineering that grammar patterns miss).
Full SAF-MCP security audit against a live MCP server. "scan_type": "shallow_33" — 33 static-detector techniques over the target's Git repo, synchronous, returns the report immediately. $5.00. "scan_type": "full_86" — all 86 techniques via real Morph Cloud sandboxes + Claude semantic checks, ~4 minutes. Returns a job_id immediately — poll GET /api/v1/saf-scan/status/{job_id} for the result. $49.00.
full_86 targets must already be a live, HTTP/SSE-reachable MCP server — the sandbox speaks MCP JSON-RPC directly to mcp_url. A bare Git repo URL won't work for this scan_type (nothing clones/builds/exposes it first); use shallow_33 for repo-only targets instead.
Pricing Summary
Endpoint
What
Cost
full-scan (free)
25 grammar patterns
Free
mcp-registry
Registry lookup / listing
Free
landing-stats
Live corpus counts
Free
full-scan (standard)
+ VirusTotal hash check
$0.02
full-scan (deep)
+ AI semantic analysis
$0.10
saf-scan (shallow_33)
33 static techniques, sync
$5.00
saf-scan (full_86)
86 techniques, live sandbox, async
$49.00
Payment is via the x402 USDC micropayment protocol. Not yet enforced in production — every endpoint above is currently free to call regardless of tier while payment verification is finalized; pricing shown is what will apply once enabled.
MCP Server Endpoint for AI agents
Connect an AI agent directly to VerifyClaw as MCP tools — no REST client code needed.
SAF-MCP audit — all 86 techniques, live sandbox, async
$49.00
get_saf_audit_status
Poll a run_saf_audit_full_86 job by job_id
Free
run_saf_audit_full_86 has the same live-HTTP-endpoint requirement described in the REST API tab — it returns a job_id immediately; call get_saf_audit_status(job_id) to retrieve the result once ready (~4 minutes later).
Real x402 payment (not a placeholder): paid tools use the official x402 Python SDK. Calling one without payment returns a genuine PaymentRequired envelope (x402Version, accepts[] with the exact chain, USDC contract, amount, and recipient) as the tool result — the MCP-native equivalent of HTTP 402, verified live against the Coinbase-hosted facilitator at x402.org/facilitator. Defaults to Base Sepolia (testnet); set X402_NETWORK / X402_PAY_TO_ADDRESS for mainnet.