Nagora MCP server
OfficialIntegrates with the Nano cryptocurrency network for escrow-protected marketplace payments, using per-order Nano deposit addresses and on-chain payout blocks for purchases on Nagora.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Nagora MCP serversearch for a used laptop under 100 XNO"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Nagora MCP server
The official MCP server for nagora.shop, the P2P marketplace where everything settles in Nano (XNO).
It gives any MCP client (Claude Desktop, Claude Code, or your own agent runtime) tools to search listings, place escrow-protected purchases, track orders, and pull signed receipts. Your AI assistant can shop for you, and escrow protects you while it does: funds are held in a per-order Nano account and only released to the seller after delivery is confirmed.
Tools
Tool | Auth | What it does |
| none | Full-text search over active listings |
| none | Full listing detail: variants, delivery options, Nano pricing |
| none | Create an agent + API key in one call, no account needed; key is stored locally |
| API key | Verify the key; see spending caps and webhook secret |
| API key | Place an order; returns the escrow deposit address and amount |
| API key | Poll order and escrow status, tracking, receipt ID |
| API key | Confirm arrival and release escrow to the seller |
| API key | Cancel an order that has not been funded yet |
| API key | Fetch the KMS-signed receipt with the on-chain payout block |
Related MCP server: InventPay MCP Server
Setup
Zero-install alternative: Nagora also hosts these same tools as a remote MCP server.
claude mcp add --transport http nagora https://api.nagora.shop/mcpand you are done. The trade-off: the hosted server cannot store your key locally, soregister_agentreturns it once and you pass it as theapiKeytool argument or pin it with--header "Authorization: Bearer nag_agt_...". This local package keeps the key in~/.nagora/credentials.jsonfor you instead.
Claude Code
claude mcp add nagora -- npx -y @nagora/mcpClaude Desktop
In claude_desktop_config.json:
{
"mcpServers": {
"nagora": {
"command": "npx",
"args": ["-y", "@nagora/mcp"]
}
}
}From source (instead of npx)
cd nagora-mcp
npm install
npm run build
claude mcp add nagora -- node /path/to/nagora-mcp/dist/index.jsLet the agent register itself
That's the whole setup. No Nagora account, no key to copy. The first time your assistant needs to buy something, it calls register_agent with a name and a refund Nano address; the API key comes back once and is saved to ~/.nagora/credentials.json (mode 600). Every other tool picks it up automatically from then on.
Self-registered keys get conservative default spending caps (currently 25 XNO per transaction, 100 XNO per day), enforced server-side. Want higher caps, multiple keys, or a dashboard? Create an account at nagora.shop and manage agents under Settings → Agents; keys minted there work the same way via NAGORA_API_KEY.
Configuration
Variable | Default | Notes |
| unset | Optional. Overrides the stored credential from |
|
| Point at |
How a purchase flows
search_listings/get_listing: find the item, note the Nano total.create_purchase: places the order. The response contains adepositAddress(a per-order escrow account on the Nano network) andamountNano.Fund the escrow: send exactly
amountNanotodepositAddressfrom the agent's own Nano wallet. This server deliberately holds no keys and moves no funds; pair it with a wallet tool such as xno-mcp, or fund it manually. Nano transfers are feeless and settle in under a second.The order moves to
AwaitingShipmentautomatically when funds land. The seller ships and adds tracking.get_order(or webhooks, see below) to watch forShipped.confirm_deliveryonce the goods arrive: escrow releases the funds to the seller on-chain.get_receipt: a signed, independently verifiable proof of the whole transaction, including the payout block hash.
If the seller never ships, the escrow auto-cancel timer refunds the buyer. If something is wrong with the order, open a dispute from the website; a human reviews it.
Webhooks (optional)
Instead of polling get_order, register a callbackUrl on your agent (Settings → Agents). Nagora signs every webhook with HMAC-SHA256: compute HMAC-SHA256("{X-Nagora-Timestamp}.{raw_body}", webhookSecret) and compare it against X-Nagora-Signature: sha256=<hex>. The webhookSecret comes from whoami.
Events: order.funded, order.shipped, and friends fire as the order progresses.
Safety model
The server is stateless and keyless: it cannot spend Nano, only request orders that you then fund (or don't).
Spending caps are enforced server-side per API key; a runaway agent hits a 429, not your wallet.
Escrow means an agent mistake is recoverable: unfunded orders can be cancelled, funded orders are protected until you confirm delivery.
Revoke a key at any time from Settings → Agents; revocation takes effect within 60 seconds.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Manage your NanoCart store from any AI agent: products, orders, coupons, subscribers, reports.
Agent-to-agent marketplace: AI agents list and buy data, services and compute. Signed receipts.
Agent-native marketplace. Bootstrap, list inventory, search, negotiate, and trade via MCP.
Marketplace for AI agents: buy goods and services under spending caps, with returns and disputes.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI agents to participate in a marketplace for buying, selling, and trading services with atomic escrow and cryptographic verification. It provides 27 tools for discovery, order book management, and automated service delivery with zero gas fees.3225MIT
- AlicenseAqualityCmaintenanceEnables AI agents to manage crypto payments, stores, products, and orders through the Model Context Protocol.2040MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to browse product catalogs, search products with filters, and initiate checkouts, generating order summaries and checkout URLs.-
- AlicenseAqualityBmaintenanceEnables AI agents to search, inspect, and purchase physical goods on an escrow-secured marketplace, including listing search, agent reputation checks, and offer creation.583MIT