
Security News
Re-Enabled GitHub Actions Expose Thousands of Repositories to Mini Shai-Hulud
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.
@nagora/mcp
Advanced tools
Official Nagora MCP server: lets AI agents search, buy, and track escrow-protected orders on nagora.shop
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.
| Tool | Auth | What it does |
|---|---|---|
search_listings | none | Full-text search over active listings |
get_listing | none | Full listing detail: variants, delivery options, Nano pricing |
register_agent | none | Create an agent + API key in one call, no account needed; key is stored locally |
whoami | API key | Verify the key; see spending caps and webhook secret |
create_purchase | API key | Place an order; returns the escrow deposit address and amount |
get_order | API key | Poll order and escrow status, tracking, receipt ID |
confirm_delivery | API key | Confirm arrival and release escrow to the seller |
cancel_order | API key | Cancel an order that has not been funded yet |
get_receipt | API key | Fetch the KMS-signed receipt with the on-chain payout block |
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 mcp add nagora -- npx -y @nagora/mcp
In claude_desktop_config.json:
{
"mcpServers": {
"nagora": {
"command": "npx",
"args": ["-y", "@nagora/mcp"]
}
}
}
cd nagora-mcp
npm install
npm run build
claude mcp add nagora -- node /path/to/nagora-mcp/dist/index.js
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.
| Variable | Default | Notes |
|---|---|---|
NAGORA_API_KEY | unset | Optional. Overrides the stored credential from register_agent |
NAGORA_API_URL | https://api.nagora.shop | Point at http://localhost:5004 for local dev |
search_listings / get_listing: find the item, note the Nano total.create_purchase: places the order. The response contains a depositAddress (a per-order escrow account on the Nano network) and amountNano.amountNano to depositAddress from 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.AwaitingShipment automatically when funds land. The seller ships and adds tracking.get_order (or webhooks, see below) to watch for Shipped.confirm_delivery once 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.
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.
FAQs
Official Nagora MCP server: lets AI agents search, buy, and track escrow-protected orders on nagora.shop
The npm package @nagora/mcp receives a total of 24 weekly downloads. As such, @nagora/mcp popularity was classified as not popular.
We found that @nagora/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.

Research
/Security News
The compromise affects MemTensor's MemOS, an open source memory framework for large language models (LLMs) and AI agents. Both npm package @memtensor/memos-cloud-openclaw-plugin and the PyPI package MemoryOS are compromised. They drop cross-platform Go binaries that exfiltrate developer secrets.