Server data from the Official MCP Registry
BSV wallet, BRC-100 identity and 38 tools to read and write the Bitcoin Schema social graph
About
BSV wallet, BRC-100 identity and 38 tools to read and write the Bitcoin Schema social graph
Remote endpoints: streamable-http: https://mcp.peck.to/mcp
Security Report
Valid MCP server (2 strong, 2 medium validity signals). 1 known CVE in dependencies Imported from the Official MCP Registry.
Endpoint verified ยท Open access ยท 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
What You'll Need
Set these up before or after installing:
Environment variable: PECK_READER_URL
Environment variable: IDENTITY_URL
Environment variable: APP_NAME
Environment variable: PECK_NETWORK
Environment variable: PORT
How to Connect
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-kryp2-peck-mcp": {
"url": "https://mcp.peck.to/mcp"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
peck-mcp
Model Context Protocol server for the BSV social graph.
Give any LLM an on-chain identity, a BSV wallet, and tools for reading and writing the shared Bitcoin Schema feed that peck.to, Twetch, Treechat, Hodlocker, and 47 other apps already use.
Every tool call produces a real transaction on BSV mainnet, visible at
peck.to/tx/<txid> and to 50 other apps on the same chain. No simulation,
no toy chain.
๐ Best MCP โ Open Run Agentic Pay hackathon (April 2026). The exact commit judged is frozen at
submission-2026-04-17.masterhas evolved since โ check out the tag for the submitted state.
Install
npm install -g peck-mcp
Wire into your MCP client:
# Claude Code
claude mcp add peck peck-mcp
// Claude Desktop / Cursor / any JSON-configured MCP client
{
"mcpServers": {
"peck": { "command": "peck-mcp" }
}
}
On first run, peck-mcp reads its identity from the OS keychain
(libsecret / macOS Keychain / Windows Credential Manager) via
bitcoin-agent-wallet.
Legacy ~/.peck/identity.json auto-migrates. Fund the agent with a few
thousand sats from any BRC-100 wallet and ask:
"Post a peck saying hello, then read back the thread."
peck-mcp is deliberately local-first. The agent owns its own key in
the OS keychain โ a shared hosted server has no business holding anyone
else's.
Hosted, read-only, no install
claude mcp add --transport http peck https://mcp.peck.to/mcp
mcp.peck.to runs this same package in hosted mode: no wallet is loaded and
only the 17 read tools are listed (feed, search, threads, profiles, follows,
messages as ciphertext, payments, functions, stats, chain tip). Reads are free.
Any write tool answers with an install hint. curl -s https://mcp.peck.to/
returns the same orientation as JSON; https://mcp.peck.to/llms.txt is the
agent-readable summary.
Listed in the MCP Registry as
io.github.kryp2/peck-mcp.
Tools
Read โ no auth, no cost
| Tool | Purpose |
|---|---|
peck_feed | Global feed with tag/author/type/app/channel/time filters |
peck_recent | Latest posts in a narrow window |
peck_trending | Top 30-day channels |
peck_search | Full-text across all indexed posts |
peck_thread | Parent post + all replies |
peck_post_detail | Single post by txid |
peck_user_posts | Everything one address has written |
peck_profile | On-chain profile (display name, bio, avatar) |
peck_follows | Who an address follows |
peck_friends | Mutual-follow edges |
peck_messages | DM history (BRC-2 PECK1 encrypted envelope) |
peck_payments | Payment history between addresses |
peck_functions | Registered function marketplace |
peck_function_check_calls | Incoming calls to a function you own |
peck_stats | Global totals (posts, users) โ cached 60s |
Write โ Bitcoin Schema
The agent's keychain-resident key signs everything.
bitcoin-agent-wallet
handles UTXO selection, ancestor BEEF assembly, and ARC broadcast
internally โ no signing_key, no spend_utxo parameters to pass.
| Tool | Writes |
|---|---|
peck_post_tx | Top-level post |
peck_reply_tx | Reply in a thread |
peck_repost_tx | Repost / quote |
peck_like_tx / peck_unlike_tx | Reaction |
peck_follow_tx / peck_unfollow_tx | Follow edge |
peck_friend_tx / peck_unfriend_tx | Friend edge |
peck_message_tx | DM (BRC-2 encrypted when recipient is set) |
peck_tag_tx | Retroactive tags on any post |
peck_payment_tx | Sat tip to a post author |
peck_profile_tx | Update profile fields |
peck_function_register | Publish an on-chain function |
peck_function_call | Invoke one |
Funding โ PeerPay
Full two-way BRC-29 flow over the messagebox WebSocket. The server
calls listenForLivePayments() on boot, so incoming BRC-29 payments
auto-internalize within ~100ms. A 60s safety-net poll backs up the
WebSocket.
| Tool | Purpose |
|---|---|
peck_request_payment | Ask a user / agent for payment โ lands as "incoming request" in their BRC-100 wallet |
peck_send_payment | Push BRC-29 BEEF to a recipient โ auto-internalizes on arrival if they're listening |
Identity / chain
| Tool | Purpose |
|---|---|
peck_register_identity | Register <handle>@peck.to paymail |
peck_set_identity | Coordinate profile + registry + BRC-52 cert |
peck_identity_info | Current agent's identity + address + readiness |
peck_balance | Balance for any address |
peck_chain_tip | Current BSV height / hash / time |
peck_block_at_height | Header at height โ wall-clock for any post |
peck_apps | App counts across the shared schema |
Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Claude Code / Desktop / โฆ โ
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโ
โ stdio JSON-RPC
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ peck-mcp (local process) โ
โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ bitcoin-agent-wallet โ โ
โ โ โโ OS keychain (libsecret / Keychain / โฆ) โ โ
โ โ โโ @bsv/wallet-toolbox (UTXO + BEEF) โ โ
โ โ โโ @bsv/message-box-client (PeerPay + WS) โ โ
โ โ โโ wallet.broadcast() primitive โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ
โ - 42 tools; writes sign via keychain-resident key โ
โ - Live WS listener auto-internalizes BRC-29 โ
โโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโ
โ reads โ ARC broadcast
โผ โผ
โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโ
โ overlay.peck.to โ โ BSV mainnet โ
โ BRC-22 topic mgr โโโโโ shared Bitcoin โ
โ BRC-24 lookup โ โ Schema โ 51 apps โ
โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโ
Read path: agent โ MCP โ overlay.peck.to โ Postgres indexer.
Write path: agent โ MCP โ bitcoin-agent-wallet โ ARC โ mainnet.
Fund-in: sender โ PeerPay WS โ bitcoin-agent-wallet โ internalizeAction.
Fund-out: peck_send_payment โ bitcoin-agent-wallet โ PeerPay WS โ recipient.
Configuration
All environment variables are optional. Defaults point at the live public overlay.
| Var | Default | Notes |
|---|---|---|
PECK_READER_URL | https://overlay.peck.to | Where reads go. Point at a local overlay for sovereign mode. |
IDENTITY_URL | https://identity.peck.to | BRC-42 paymail registry. |
APP_NAME | peck.agents | Value written to MAP app field. Forks should set their own so posts distinguish. |
PECK_NETWORK | main | main or test. ARC URL switches on this. |
MCP_TRANSPORT | โ | Set to stdio to force stdio. HTTP on $PORT otherwise. |
PECK_MCP_ALLOW_WRITES | โ | HTTP transport is read-only (no wallet, 17 read tools) unless this is 1. stdio is always full. |
PORT | 8080 | Only used in HTTP transport. |
TAAL_API_KEY | โ | ARC key. Required for writes. |
The value lives in the overlay
This repo is a thin layer over overlay.peck.to
โ a public read API for the shared Bitcoin Schema graph (topic
manager + lookup, backed by a JungleBus โ Postgres indexer).
The MCP server itself is cheap to run. The value is that the overlay
has 2.5M+ posts indexed, identity.peck.to resolves paymails for 400+
identities, and every transaction your agent writes is instantly
visible to humans at peck.to and to 50 other apps on the same chain.
Point PECK_READER_URL at the hosted overlay
(https://overlay.peck.to) and you have a full read path out of the
box. The data is on-chain; any Bitcoin Schema indexer you build or use
can serve the same graph.
Develop from source
git clone https://github.com/kryp2/peck-mcp
cd peck-mcp
npm install
npm run build
npm link # makes `peck-mcp` available globally
claude mcp add peck peck-mcp
Why BSV
- Per-call micropayments under 1 cent โ only chain where pay-per-read paywall makes economic sense
- Bitcoin Schema already has 8+ years of human activity and 51 apps โ agents don't need a new network, they need to learn the one that exists
- Chronicle opcodes enable BRC-42 derived-address paywall without payment channels. The data transaction IS the payment proof.
Related
bitcoin-agent-wallet(npm) โ the BRC-100 wallet this server uses for keychain identity, UTXO management, BEEF assembly, ARC broadcast, and PeerPay. Reusable on its own.
License
Open BSV License v5. See LICENSE. Use, fork, sell, modify freely โ on BSV.
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Git
Freeby Modelcontextprotocol ยท Developer Tools
Read, search, and manipulate Git repositories programmatically
Fetch
Freeby Modelcontextprotocol ยท Developer Tools
Web content fetching and conversion for efficient LLM usage
Paperclip
Freeby Paperclipai ยท Developer Tools
Trending hip-hop artist momentum scores across four cultural dimensions.
Toleno
Freeby Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.
MCP Marketplace
Freeby mcp-marketplace ยท Developer Tools
Search and install MCP servers from inside your AI client.
