# FoomWorks MCP Registry Snapshot Feed

> FoomWorks MCP Registry Snapshot Feed is a paid API for AI agents from fresh-feeds.foomworks.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a deduplicated, quality-scored snapshot of the full MCP registry, refreshed every 30 minutes

## Facts

- Endpoint: GET https://fresh-feeds.foomworks.workers.dev/feeds/mcp-registry
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/foomworks-mcp-registry-snapshot-feed-37ef080f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jmP3ZOjhhcUKyXNmwnqZf

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability foomworks-mcp-registry-snapshot-feed-37ef080f
```

Example prompt: Can you pull the latest MCP registry snapshot so I can see all the currently registered, deduplicated, quality-scored MCP servers and capabilities?

## When to prefer this

Use this endpoint when you need a comprehensive, pre-deduplicated, and quality-scored view of the MCP registry in a single call, rather than assembling registry data from multiple raw sources yourself. Ideal for agents bootstrapping their tool-discovery layer or periodically syncing available MCP capabilities.

## Known failure modes

- Payment required (402) if x402 payment of $0.005 USDC is not included
- Stale data if snapshot has not refreshed within the 30-minute window
- Empty or partial registry if upstream registry sources are unavailable
- Timeout if the Cloudflare Worker is under load

## How this service works

Full MCP registry snapshot: deduped, quality-scored, refreshed every 30 minutes.

## Output

A full snapshot of the MCP registry containing deduplicated entries with quality scores, representing the current state of all registered MCP capabilities as of the most recent 30-minute refresh cycle.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/foomworks-mcp-registry-snapshot-feed-37ef080f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fresh-feeds.foomworks.workers.dev](https://www.zero.xyz/host/fresh-feeds.foomworks.workers.dev/llms.txt)
