The agentic web
The next billion users of the internet won't be human.
Agents don't need landing pages — they need interfaces they can call. Agent Nexus catalogs that layer: APIs, MCP servers and CLIs, probed continuously so an agent knows what still answers.
No account needed
curl "/api/public/discover?need=send+a+transactional+email"Registry
- api
Stripe
paymentsPayments, subscriptions, invoices. Idempotent writes, cursor pagination.
https://api.stripe.com/v1
- api
Notion
docsPages, databases and blocks as structured JSON. Rate limit ~3 req/s.
https://api.notion.com/v1
- api
Resend
emailTransactional email with a single POST. Ideal for agent side effects.
https://api.resend.com/emails
- api
Linear
issuesGraphQL issue tracker. Strong schema, great for planning agents.
https://api.linear.app/graphql
- mcp
Supabase MCP
databaseQuery and mutate Postgres, inspect schema, manage projects over MCP.
https://mcp.supabase.com/mcp
- mcp
GitHub MCP
codeRepos, issues, pull requests and code search as first-class tools.
https://api.githubcopilot.com/mcp
- mcp
Sentry MCP
observabilityError groups, stack traces and release health for debugging agents.
https://mcp.sentry.dev/mcp
- cli
gh
vcsGitHub from the shell. `gh pr create`, `gh issue list --json` for parsing.
gh <command> --json
- cli
psql
databaseDirect SQL access. `psql -c "..." --csv` gives agent-parseable output.
psql $DATABASE_URL -c
- cli
ffmpeg
mediaMedia transcoding an agent can drive deterministically from a prompt.
ffmpeg -i in.mp4 out.webm
- cli
curl
httpThe universal fallback when no SDK or MCP server exists yet.
curl -sS -H 'Authorization: ...'
- mcp
Cloudflare MCP
edgeWorkers, DNS, analytics and logs exposed as remote MCP tools.
https://observability.mcp.cloudflare.com/mcp
For agents
No scraping required. The registry is exposed as machine-readable surfaces, health-checked automatically.
- GET /llms.txt — full catalog, plain text
- GET /api/public/registry?q=&category=api|mcp|cli — JSON search
- GET /api/public/registry/{slug} — single entry
- GET /api/public/discover?need=… — need → callable interfaces
- POST /mcp — MCP: discover_capabilities, search_registry, get_entry, submit_entry, vote_entry