Risk oracle for x402 endpoints — tells AI agents which paid endpoints are alive, honestly priced and safe to call. Zero runtime deps.
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
- !No standard license detected
claude mcp add deadchannel -- npx -y hosaka-mcp{
"mcpServers": {
"deadchannel": {
"command": "npx",
"args": ["-y", "hosaka-mcp"]
}
}
}MCP Servers overview
# deadchannel & Hosaka
Two services that sell to AI agents over [x402](https://x402.org), paid per call
in USDC. No signup, no API key, no subscription — an agent calls, pays, and gets
an answer.
| | what it sells | price |
| --- | --- | --- |
| **Hosaka** | which third-party vendors a company uses, proven from its own DNS, plus contacts | $0.01 – $0.25 |
| **deadchannel** | whether an x402 endpoint is alive, honestly priced and safe to call | $0.001 |
## Hosaka — company data for agents
Available as an MCP server, so any MCP client can buy from it directly:
```bash
npx -y hosaka-mcp
```
```json
{
"mcpServers": {
"hosaka": {
"command": "npx",
"args": ["-y", "hosaka-mcp"],
"env": { "HOSAKA_PRIVATE_KEY": "0x…" }
}
}
}
```
`HOSAKA_PRIVATE_KEY` is a wallet holding a little USDC on Base. Four tools at
four prices, so a cheap question never pays for an expensive answer:
| tool | price | what you get |
| --- | --- | --- |
| `hosaka_lookup` | $0.01 | domain age, registrar, mail and DNS provider, DMARC, HTTPS, vendor count |
| `hosaka_contacts` | $0.02 | the dossier, plus the emails and phones the company publishes about itself |
| `hosaka_dossier` | $0.07 | every third-party vendor the company can be proven to use, each with its proof |
| `hosaka_people` | $0.25 | the dossier, plus named people who work there |
**Why the dossier is worth having.** A company proves it owns its domain to
every SaaS product it buys by placing a DNS verification record, and authorises
every sender it uses in its SPF record. Those two lists are a purchase history
the company published itself.
Asking for `figma.com` returns Anthropic, OpenAI, Adobe, Atlassian, MongoDB
Atlas, Greenhouse, Docusign, Stripe, Notion, Dropbox and Zendesk — each with the
exact record that proves it, so a buyer can check rather than trust.
Page fingerprints require a loaded script or CDN host, never a mention: a site
listing a vendor's logo among its integrations is not a site that uses it.
Live at [hosaka-agents.vercel.app](https://hosaka-agents.vercel.app).
## deadchannel — a risk oracle for x402 endpoints
Give it a URL, it tells an agent whether that endpoint is alive, honestly priced,
and safe to call — **without spending a cent**.
Roughly 17% of probed x402 endpoints are dead or traps, and the Bazaar discovery
layer ships no ranking, quality, or reputation signal by its own admission. An
agent picking from that catalog is guessing with real money.
## What it checks
Every verdict comes from unpaid `402` responses, which is what makes it cheap
enough to run across a whole catalog.
| Signal | What it catches |
| --- | --- |
| `reachable` | Endpoint answers at all, consistently |
| `bot-gate` | A bot wall answers agents while browsers get a clean 402 — the endpoint is invisible to indexers |
| `speaks-402` | Returns parseable payment requirements (v1 body **and** v2 `payment-required` header) |
| `gate-closed` | Advertises a price it does not enforce — anyone can take the content free |
| `price-sane` | Price sits inside $0.0001–$5; above the ceiling one call can drain a budget |
| `price-stable` | Quote does not move between probes taken seconds apart |
| `pay-to-valid` | Payout address is well formed for its chain and is not a burn address |
| `network-mainnet` | Settles somewhere that can hold real value, not testnet only |
| `network-known` | Chain identifier is recognizable (CAIP-2 or friendly name) |
| `schema-advertised` | Agent can know the response shape *before* paying |
| `bazaar-metadata` | Publishes `serviceName` / `tags` so topic search can find it |
| `latency` | p99 inside the 5s budget agents typically allow |
| `spec-clean` | Payload matches the documented shape; deviations are reported, not swallowed |
Verdicts: `live`, `degraded`, `trap`, `testnet`, `dead`, `unknown`, plus a
bounded 0–100 risk score.
## Use
Requires Node 22+. There are **no runtime dependencies** — types are stripped
natively, so there is no build step and nothing to audit but this repo.
```
node src/cli.ts https://x402.org/protected
node src/cli.ts --quiet --samples 5 url-a url-b url-c
node src/cli.ts --json url > verdict.json
```
Exit code is non-zero when any target is a `trap` or `dead`, so it drops into CI
as a guard against shipping an agent pointed at a bad endpoint.
```
TESTNET risk 80 $0.01 355ms p99 https://x402.org/protected
x network-mainnet Only testnet networks offered (base-sepolia, solana-devnet).
This endpoint cannot accept real value.
! schema-advertised No input or output schema. An agent has to pay before it
can find out what it gets back.
```
## First full catalog scan — 20 Aug 2026
`node src/scan.ts --live 150` pulls every resource the public Bazaar facilitators
publish and audits it. Results over **14,979 resources**:
| | |
| --- | --- |
| catalog held by the top 3 payout addresses | **18.4%**, receiving **1 call in 80** |
| publish no discovery tags | **40.9%** — an agent searching by topic never finds them |
| pass every check | **56.8%** |
| of the 150 busiest, live right now | **91.3%** |
| of the busiest, genuinely dead | **2.0%** |
Median price $0.01, range $0 to $1,000, 316,927 paid calls in 30 days.
The catalog is in better shape than the folklore suggests. What it is not is
evenly distributed: three addresses list 2,750 resources between them and receive
one call in eighty, which makes them roughly 15x over-represented relative to the
demand they serve. Catalog size is not catalog depth.

### A correction, and the guard against repeating it
An earlier version of this table claimed 89.8% of the catalog published no tags.
That was wrong. The loader read `extensions.bazaar.tags` only, while most
publishers put tags on the item root — the real figure is 40.9%.
The bug survived review because nothing asserted the *positive* count. A check
that only ever counts what is missing cannot tell "publishers omit this" apart
from "we are looking in the wrong place." `test/catalog.test.ts` now hand-counts
tags across all three known locations in a captured 200-item slice of the live
catalog and asserts the loader matches exactly, in both directions.
## Notes from the wild
Built against live endpoints, not the spec alone:
- **v2 moves payment requirements into a base64 `payment-required` header** and
leaves the body as `{}`. A parser that only reads the body marks the official
reference endpoint as dead.
- **v2 sends CAIP-2 network ids** (`eip155:84532`, `solana:EtWTRA…`) where v1 sent
friendly names. Both are live simultaneously.
- **v2 renames `maxAmountRequired` to `amount`** and hoists shared `resource`
metadata to the payload root.
- Several servers omit the top-level `x402Version` the reference implementations
all send, and some nest `accepts[]` one level deeper than documented. Both are
parsed and reported as warnings rather than rejected.
- **Most resources are POST.** Probing them with GET returns 404/405, which looks
exactly like a dead endpoint — it put our first live-probe dead rate at 25%
when the real figure is 2.7%. The verb comes from the catalog now, with a POST
retry when it is unknown. Any x402 index reporting a high dead rate is worth
checking for this.
- **Discovery metadata is scattered.** The spec puts `serviceName`/`tags` on the
ResourceInfo object, the CDP catalog flattens them onto the item root, and a
minority nest them under `extensions.bazaar`. Read one location and you will
undercount by half.
- **Brokered rails exist.** AWS Marketplace resources name the payee with a URN
under an `aws:base` network instead of a chain address. That is legitimate, but
the funds go to the broker, so it is reported as a warning rather than scored
as an invalid payout.
## Selling
The service sells its own check over x402. `src/server/` implements the seller
side of the v2 HTTP transport: `PAYMENT-REQUIRED` out, `PAYMENT-SIGNATURE` in,
`PAYMENT-RESPONSE` back, in the authorization flow — verify, run the resource,
then settle.
**No private key is involved.** A seller declares where settlement should land;
the buyer signs and the facilitator broadcasts. The payout address is therefore
public information and lives in `deadchannel.config.json`, where anyone can
audit it, rather than in a dashboard where nobody can.
Settlement runs only after the probe produced a result, so a failure on our side
costs the buyer nothing.
```
GET / service card, free
GET /health liveness, free
GET /facilitator proves credentials are accepted, free, moves no money
POST /probe the check, $0.001 in USDC on Base
```
`GET /facilitator` exists because a wrong credential otherwise stays invisible
until someone tries to pay, and the first to discover it would be a customer.
## Live
The service is deployed at **https://deadchannel.vercel.app**, selling on Base
mainnet at $0.001 per call and settling through the Coinbase facilitator.
First settled payment: [`0x6ac4a22c`](https://basescan.org/tx/0x6ac4a22c0b7721c9a5103d98ee3d546c120293e97bb5b7a2ca13fabed28e319b),
block 50230005, 20 Aug 2026. Gas was paid by the facilitator, not the buyer —
in x402 the buyer only signs, so a wallet holding nothing but USDC can pay.
`npm run validate` re-runs the 25 preflight checks the Bazaar applies before it
will index a resource, and reports whether the listing is currently active. It
needs no key and moves no money.
```
resource : https://deadchannel.vercel.app/probe
valid : true
accepted : accepted
checks : 25/25 passed
indexed : active=true
```
## Hosaka
A second shop on the same payout address, selling company facts to agents.
```
POST /lookup $0.01 domain age, registrar, mail and DNS provider, DMARC, HTTPS
POST /dossier $0.07 every third-party vendor we can prove, with the proof
```
Live at **https://hosaka-agents.vercel.app**, settling on BasWhat people ask about deadchannel
What is plus8bit/deadchannel?
+
plus8bit/deadchannel is mcp servers for the Claude AI ecosystem. Risk oracle for x402 endpoints — tells AI agents which paid endpoints are alive, honestly priced and safe to call. Zero runtime deps. It has 0 GitHub stars and its last recorded update is dated 2026-08-22.
How do I install deadchannel?
+
You can install deadchannel by cloning the repository (https://github.com/plus8bit/deadchannel) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is plus8bit/deadchannel safe to use?
+
Our security agent has analyzed plus8bit/deadchannel and assigned a Trust Score of 70/100 (tier: OK). See the full breakdown of passed checks and flags on this page.
Who maintains plus8bit/deadchannel?
+
plus8bit/deadchannel is maintained by plus8bit. The last recorded GitHub activity is dated 2026-08-22, with 0 open issues.
Are there alternatives to deadchannel?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy deadchannel to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/plus8bit-deadchannel)<a href="https://claudewave.com/repo/plus8bit-deadchannel"><img src="https://claudewave.com/api/badge/plus8bit-deadchannel" alt="Featured on ClaudeWave: plus8bit/deadchannel" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!