streamable-httpupdated 8d ago
Find and vet paid x402 API services before an agent spends money on them.
What can you do with nohumans directory?
nohumans.directory โ MCP Server
Find and vet paid x402 API services before an agent spends money on them.
A discovery and trust layer for paid x402 services. We verify listings two ways: by paying them real USDC and recording whether they deliver, and by continuously re-probing every listing's live 402 challenge โ several times an hour, with the full history kept. Each listing carries a recency-weighted reliability score built from that history, plus on-chain payment evidence from our own index of the chain โ so an agent can check whether an endpoint actually delivers before paying for it.
Free. No API key. No signup. No account.
Live stats: https://nohumans.directory/stats ยท REST API: https://api.nohumans.directory
Why this exists
Most x402 directories are catalogs: they list what exists. None of them tell you whether a listing still works โ let alone whether anyone actually pays it, or whether it delivers when paid.
This one buys from listings and publishes what came back, per call, with the
transaction hash. It probes every endpoint continuously and keeps the
history: a listing moves unverified โ verified only after sustained clean
probes, and falls to failing when it stops responding. The reliability
score is recency-weighted, so a service that broke yesterday can't hide
behind a good month. And every listing shows its on-chain payment activity โ
payments, distinct paying wallets, dollars, per day โ from our own index of
USDC transfers on Base.
Every listing also carries a hand-written description of what the service actually does โ which sounds mundane until you try semantic search against a catalog of bare URLs.
Installation
Remote server, streamable HTTP. No install, no build step, no credentials.
Claude Code
claude mcp add --transport http nohumans https://api.nohumans.directory/mcp
Claude Desktop / any stdio-only client
{
"mcpServers": {
"nohumans": {
"command": "npx",
"args": ["mcp-remote", "https://api.nohumans.directory/mcp"]
}
}
}
Direct remote connection
https://api.nohumans.directory/mcp
Transport: streamable-http ยท Authentication: none ยท Cost: free
Agent Skill
For agents that support the Agent Skills standard
(Claude Code, Codex, and others), install the skill so the agent knows how
to use the tools below intelligently โ when to prefer verified listings,
how to read score/status/x402_version/on-chain payment evidence, and
how to report a real outcome via tx_hash:
mkdir -p ~/.claude/skills/nohumans-directory
curl -o ~/.claude/skills/nohumans-directory/SKILL.md \
https://raw.githubusercontent.com/jalcodev/nohumans-mcp/main/skills/nohumans-directory/SKILL.md
Tools
find_paid_service
Search paid x402 services by capability, price ceiling, and minimum reliability score. Returns ranked results โ verified services first, then by reliability, then by price.
| Parameter | Type | Description |
|---|---|---|
query |
string | Free-text search across service names and descriptions |
category |
string | Exact category filter, e.g. data.fx, infra.trust |
max_price |
number | Maximum price per call, in USDC |
min_score |
number | Minimum reliability score, 0-1 |
limit |
number | Max results, 1-50 (default 10) |
get_service_details
Full record for a single service: pricing, accepted chains, request and response
schemas, current status, reliability score, median latency, probe count, protocol
version (x402_version), and on-chain payment evidence โ 30-day totals, a
per-day series (onchain_daily), how many listings share the payment address,
and the sampled payment shape (x402-signed vs plain transfers vs other) โ
everything an agent needs before making a paid call.
| Parameter | Type | Description |
|---|---|---|
id |
string | Listing ID, as returned by find_paid_service |
resolve_endpoint
The reverse lookup: you already hold an endpoint URL โ from another catalog, a
prompt, a config file โ and want this directory's verdict on it before paying.
Returns the same full record as get_service_details when the URL is listed,
a delisted warning if it was listed and later removed, or an explicit
not-listed result. Not-listed means never checked here, not unsafe.
| Parameter | Type | Description |
|---|---|---|
url |
string | The endpoint URL exactly as held, query string included |
Example
An agent that needs FX rates and won't pay more than half a cent, and refuses to touch anything with a reliability score under 0.9:
Install
Add nohumans directory to your client. Pick the one you use.
claude mcp add --transport http nohumans-directory https://api.nohumans.directory/mcpcodex mcp add nohumans-directory --url https://api.nohumans.directory/mcp{
"mcpServers": {
"nohumans-directory": {
"url": "https://api.nohumans.directory/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"nohumans-directory": {
"type": "http",
"url": "https://api.nohumans.directory/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"nohumans-directory": {
"url": "https://api.nohumans.directory/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"nohumans-directory": {
"serverUrl": "https://api.nohumans.directory/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.3.0Latest | Aug 25, 2026 |
| 1.2.0 | Aug 22, 2026 |
| 1.1.0 | Jul 25, 2026 |
| 1.0.0 | Jul 19, 2026 |