Read what an MCP server does before connecting: findings quoted at file:line from its publ
Read what an MCP server does before connecting: findings quoted at file:line from its published source. POST {ecosystem:'mcp', name, version}. Charged only when an analyzed result is returned.
200000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-21
updated
Provider
sri-test.biz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6Eeec6b06bD07b5A74784aF5FfAd5A65bbb1c4dD",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "200000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"bodySchema": {
"properties": {
"ecosystem": {
"default": "mcp",
"enum": [
"mcp"
],
"type": "string"
},
"name": {
"description": "MCP registry name (io.github.owner/repo) or the package name you install.",
"type": "string"
},
"version": {
"description": "Exact version, e.g. 1.2.3",
"type": "string"
}
},
"required": [
"name",
"version"
],
"type": "object"
},
"method": "POST",
"type": "http"
},
"output": {
"example": {
"disclaimer": "A report of facts found in the source code, not a safety guarantee.",
"ecosystem": "mcp",
"findings": [
{
"category": "credential_access",
"evidence": "var data = { email: email, password: password }",
"location": "lib/auth.js:110",
"severity": "high",
"why": "Reads email and auth token from a config file in the user's home directory."
}
],
"name": "io.github.firebase/firebase-mcp",
"risk_level": "high",
"status": "analyzed",
"version": "0.3.0"
}
}
},
"schema": {
"input": {
"type": "object"
},
"output": {
"type": "object"
}
}
}
}Use it
curl
curl "https://sri-test.biz/v1/x402/verify" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://sri-test.biz/v1/x402/verify");
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://sri-test.biz/v1/x402/verify")
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/15491.json, and this resource appears in /discovery/resources and /discovery/search.