Counterparty MCP Server
Enables AI agents to interact with the Counterparty protocol on Bitcoin, allowing queries of balances, assets, orders, and dispensers, as well as composing, signing, and broadcasting transactions.
README
Counterparty MCP Server
Give AI agents the ability to interact with Counterparty — the token protocol built on Bitcoin. Query balances, assets, orders, and dispensers. Compose, sign, and broadcast transactions. Works with any MCP-compatible client.
Install
No download needed — just add the config below to your AI client. npx fetches and runs the server automatically.
Claude Desktop
Add to claude_desktop_config.json (how to find it):
{
"mcpServers": {
"counterparty": {
"command": "npx",
"args": ["-y", "@21e14/mcp-server"]
}
}
}
Claude Code
claude mcp add counterparty -- npx -y @21e14/mcp-server
With signing (see Signing & Broadcasting):
claude mcp add counterparty \
-e SIGNER_PRIVATE_KEY=L1aW4aubDFB7yfras2S1mN... \
-e SIGNER_ADDRESS=bc1q... \
-- npx -y @21e14/mcp-server
Manage servers with claude mcp list, claude mcp get counterparty, or claude mcp remove counterparty.
VS Code (Copilot)
Use Ctrl+Shift+P → MCP: Add Server → Stdio, then enter:
npx -y @21e14/mcp-server
Or add to .vscode/mcp.json:
{
"servers": {
"counterparty": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@21e14/mcp-server"]
}
}
}
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"counterparty": {
"command": "npx",
"args": ["-y", "@21e14/mcp-server"]
}
}
}
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"counterparty": {
"command": "npx",
"args": ["-y", "@21e14/mcp-server"]
}
}
}
ChatGPT
In ChatGPT desktop, go to Settings → Beta Features → MCP Servers, then add:
npx -y @21e14/mcp-server
Any MCP Client
The server speaks stdio. Point any MCP-compatible client at:
npx -y @21e14/mcp-server
That's it. The agent can now query the Counterparty network and compose unsigned transactions.
Signing & Broadcasting
To let the agent sign and broadcast transactions, add a signing key:
{
"mcpServers": {
"counterparty": {
"command": "npx",
"args": ["-y", "@21e14/mcp-server"],
"env": {
"SIGNER_PRIVATE_KEY": "L1aW4aubDFB7yfras2S1mN...",
"SIGNER_ADDRESS": "bc1q..."
}
}
}
}
This enables the sign_and_broadcast tool. Signing gives the AI agent the ability to spend funds — read the security guidance below.
Bot wallet pattern (recommended)
- Generate a fresh keypair offline. Don't reuse an existing wallet or generate keys through the AI.
- Fund it with only what you're willing to risk. This is your blast radius.
- Use a segwit address. P2WPKH (
bc1q...), P2SH-P2WPKH (3...), or P2TR (bc1p...). Legacy P2PKH is not supported. - One key, one address. No HD derivation. Counterparty reuses addresses by design.
- Keep main holdings elsewhere. The bot wallet is disposable.
Compose-only mode
Without signing keys, the server returns unsigned transaction hex from all compose tools. You can review and sign offline with your own tooling. This is the safest mode.
Transaction verification
sign_and_broadcast extracts and returns the embedded OP_RETURN data from the transaction before signing — done locally without trusting the API, so the agent can verify the transaction matches what was requested.
Environment Variables
| Variable | Required | Description |
|---|---|---|
COUNTERPARTY_NODE |
No | Counterparty node URL (default: https://api.counterparty.io:4000) |
SIGNER_PRIVATE_KEY |
No | WIF-encoded private key for signing |
SIGNER_ADDRESS |
No | Bitcoin address for the signing key |
Tools
Query (24)
| Tool | Description |
|---|---|
get_balances |
All token balances for an address |
get_balance |
Single asset balance for an address |
get_asset_info |
Asset metadata (supply, divisibility, issuer) |
get_asset_balances |
All holders of an asset |
get_assets |
Search/list assets |
get_issuances |
Issuance history for an asset |
get_owned_assets |
Assets issued by an address |
get_orders |
DEX orders |
get_order |
Single order by hash |
get_order_matches |
Matches for an order |
get_orders_by_pair |
Order book for a trading pair |
get_asset_orders |
Orders involving an asset |
get_address_orders |
Orders by address |
get_dispensers |
Dispensers |
get_dispenser |
Single dispenser by hash |
get_dispensers_by_asset |
Dispensers for an asset |
get_address_dispensers |
Dispensers by address |
get_dispenses |
Purchases from a dispenser |
get_dividends |
Dividend distributions for an asset |
get_address_transactions |
Transaction history for an address |
get_sends |
Token transfers from an address |
get_transaction |
Single transaction by hash |
get_utxo_balances |
Tokens attached to a UTXO |
get_latest_block |
Latest block info |
Compose (18)
| Tool | Description |
|---|---|
compose_send |
Send tokens to an address |
compose_mpma |
Multi-party multi-asset send |
compose_order |
Place a DEX order |
compose_cancel |
Cancel an open order |
compose_btcpay |
Pay for a matched BTC order |
compose_issuance |
Create or update an asset (supports inscriptions) |
compose_dispenser |
Create, open, or close a dispenser |
compose_dispense |
Buy from a dispenser |
compose_dividend |
Distribute dividends to holders |
compose_broadcast |
Broadcast a message (supports inscriptions) |
compose_sweep |
Sweep all assets to a destination |
compose_destroy |
Permanently burn tokens |
compose_fairminter |
Create a fair launch (supports inscriptions) |
compose_xcp420_fairminter |
XCP-420 compliant fair launch |
compose_fairmint |
Mint from an active fair launch |
compose_attach |
Attach tokens to a UTXO |
compose_detach |
Detach tokens from a UTXO |
compose_movetoutxo |
Move a UTXO to a new output |
Bitcoin (4)
| Tool | Description |
|---|---|
sign_and_broadcast |
Sign and broadcast (requires signing keys) |
broadcast_transaction |
Broadcast an already-signed transaction |
get_fee_estimate |
Current fee rate estimate |
decode_transaction |
Decode raw transaction hex |
Utility (3)
| Tool | Description |
|---|---|
unpack_transaction |
Decode a Counterparty message from a transaction |
get_server_info |
Node status and version |
api_request |
Raw API request to any endpoint (full API reference) |
Resources
The server includes protocol documentation that agents can read for context:
counterparty://protocol-overview— Assets, quantities, DEX, dispensers, fair minting, fees, and operational tipscounterparty://xcp420-standard— XCP-420 fair launch standardcounterparty://quick-start— Step-by-step workflows for common operations
Development
git clone https://github.com/XCP/mcp-server.git
cd mcp-server
npm install
npm test
Test locally:
{
"mcpServers": {
"counterparty": {
"command": "node",
"args": ["/path/to/mcp-server/dist/index.js"]
}
}
}
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。