[SIGNAL+PROOF] Census record for one MCP server (?name=): status, missing_streak, lifecycl
[SIGNAL+PROOF] Census record for one MCP server (?name=): status, missing_streak, lifecycle, record_hash. DEGRADED DELIVERY, see unavailable_fields - prominence, maturity, github_stars, downloads and source_code_url have no data because the original collector stopped. Snapshot 2026-07-08. Descriptive only, never a forecast or advice. No data -> 422 no_charge, not billed. $0.01 per call.
10000 (raw units)
price
20
calls / 30d
2
unique payers
2026-09-07
updated
Provider
api.truthbear.co · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2d16a243ba9facc6ac85519d5efad2149dc4c6c3",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "8qEn3Y3GPXdQ28LHshPa4UYeD8V38Lq9b4jCRirQAY3n",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"example": {
"name": "0580iris-lang-x711"
},
"exampleRequest": "/mcp/server?name=0580iris-lang-x711",
"method": "GET",
"queryParams": {
"name": "required - MCP server id; samples at free /mcp/preview (sample_ids)"
},
"type": "http"
},
"output": {
"example": {
"current": {
"missing_streak": 0,
"name": "x711",
"status": "active"
},
"data_age_hours": 422,
"entity": "(unlocked on payment)",
"entity_name": "(unlocked on payment)",
"hash_core_version": 4,
"lifecycle": {
"basis": "Imported from the surviving registry (2026-07-25); state is derived from status + missing_streak, 7 consecutive disap...",
"first_seen": "2026-07-07",
"last_seen": "2026-07-08",
"lifespan_days": 1,
"missing_streak": 0,
"state": "operating"
},
"observed_at": "2026-07-08T00:00:00.000Z",
"record_hash": "sha256:051650e9a2042e4530442ff7b73a6d8b4d9e943c109994f61a5c92a760e3068f",
"signal_id": "mcp.server-census",
"snapshot_date": "2026-07-08",
"source_ref": "https://github.com/modelcontextprotocol",
"source_tier": "T2-observable"
},
"type": "json"
}
},
"outputSchemaRef": "/manifest",
"priceUsd": "$0.01",
"priceUsdNumber": 0.01,
"routeTemplate": "/mcp/server",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"name": {
"description": "required - MCP server id; samples at free /mcp/preview (sample_ids)",
"examples": [
"0580iris-lang-x711"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"type": {
"const": "http"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"properties": {
"example": {},
"type": {
"const": "json"
}
},
"required": [
"type"
],
"type": "object"
}
}
}
}
}Use it
curl
curl "https://api.truthbear.co/mcp/server" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.truthbear.co/mcp/server");
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://api.truthbear.co/mcp/server")
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/4455.json, and this resource appears in /discovery/resources and /discovery/search.