MCP server safety audit: completes a real initialize+tools/list handshake, then statically
MCP server safety audit: completes a real initialize+tools/list handshake, then statically scans every tool's name/description/schema for hidden unicode (tool-poisoning), prompt-injection-style phrasing, and tools that quietly combine multiple high-privilege capabilities (network+filesystem+exec+credential access). If a GitHub repo is supplied, folds in a real software-supply-chain signal too.
60000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-07
updated
Provider
x402-api-catalog.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9041f8a43D0B43209B9227DE2c7fb25c9FE3847E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "60000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"repo": "example-org/example-mcp-server",
"url": "https://mcp.example.com/mcp"
},
"type": "http"
},
"output": {
"example": {
"findings": [],
"score": 90,
"tools_found": 3,
"url": "https://mcp.example.com/mcp",
"verdict": "healthy: no red flags found"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"repo": {
"description": "optional owner/repo to fold in a GitHub supply-chain signal",
"type": "string"
},
"url": {
"description": "base URL of the MCP server (streamable-HTTP transport)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"score": {
"type": "number"
},
"url": {
"type": "string"
},
"verdict": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-api-catalog.onrender.com/api/mcp-audit" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-api-catalog.onrender.com/api/mcp-audit");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402-api-catalog.onrender.com/api/mcp-audit")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8248.json, and this resource appears in /discovery/resources and /discovery/search.