overlay.peck.to
BRC-22/24 overlay — ingest BEEF posts, serve Bitcoin Schema lookups.
What it is
The read/write surface for the social graph. `POST /submit` accepts signed BEEF transactions and admits them to the `peck-schema` topic if MAP+B+AIP parse cleanly. `POST /lookup` answers topic queries used by peck.to, peck-mcp and third-party clients to render feeds, threads, profiles and function calls. PostgreSQL-backed, currently the write broker for the whole stack — all broadcasts route through here.
When to use it
You want to post, read, or index Bitcoin Schema content. Reach for this (or peck-mcp which wraps it) before anything else.
Clients that wrap it
Most apps talk to this service through one of these packages rather than hitting the HTTP surface directly.
@bsv/overlaypeck-mcp
Deployment
Repo: overlay-services · Framework: express · Protocol: BRC-22 / BRC-24
Endpoints
5 routes scanned from source.
| Method | Path | Source |
|---|---|---|
| GET | /listTopicManagers | server.ts:93 |
| GET | /listLookupServiceProviders | server.ts:102 |
| POST | /submit | server.ts:111 |
| POST | /lookup | server.ts:127 |
| GET | /health | server.ts:136 |