{"name":"shop.nagora/nagora","slug":"nagora","title":"Nagora","description":"Buy real goods with Nano (XNO) through escrow. Search, purchase, track orders, get signed receipts.","url":"https://mcp.market/server/nagora","rating":null,"grade":"A","score":85,"certified":false,"status":"active","category":"ecommerce","tags":["ecommerce","search"],"presence":{"score":31,"stars":0,"forks":0,"downloads_week":44,"last_push_at":"2026-09-11T00:52:37.000Z","license":"MIT"},"uptime":{"percent":100,"checks":1,"ok":1,"last_checked_at":"2026-09-19T20:01:39.193Z","last_ok_at":"2026-09-19T20:01:39.193Z","latency_ms":563},"claimed":false,"transport":"mixed","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/m-flex/nagora-mcp","website":"https://nagora.shop","version":"1.0.1","remotes":[{"type":"streamable-http","url":"https://api.nagora.shop/mcp"}],"packages":[{"registryType":"npm","identifier":"@nagora/mcp","version":"0.1.0","transport":{"type":"stdio"}}],"tools":[{"name":"cancel_order","description":"Cancels an order whose escrow is still Initiated (no on-chain funds sent yet). Restores listing stock. Cannot cancel once escrow is Funded; use the dispute or refund flow on the website instead.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"orderId":{"description":"Order ID to cancel","type":"string","format":"uuid"},"apiKey":{"description":"Agent API key (nag_agt_...). Omit when connected with an Authorization header","type":["string","null"],"default":null}},"required":["orderId"]}},{"name":"confirm_delivery","description":"Confirms the goods or digital content arrived and releases the escrowed funds to the seller. Requires the order's escrowStatus to be Shipped. Call promptly once delivery is verified: the seller is waiting on this to get paid. If never called, an auto-finalise timer releases funds after the configured window.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"orderId":{"description":"Order ID to confirm","type":"string","format":"uuid"},"apiKey":{"description":"Agent API key (nag_agt_...). Omit when connected with an Authorization header","type":["string","null"],"default":null}},"required":["orderId"]}},{"name":"create_purchase","description":"Places an order against a listing. Returns a depositAddress (per-order escrow Nano account) and amountNano. IMPORTANT: the order is not funded by this call. Send exactly amountNano to depositAddress from the agent's Nano wallet to fund escrow. Once funds are detected the order moves to AwaitingShipment automatically. Physical listings require a shippingAddress.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"listingId":{"description":"Listing to purchase","type":"string","format":"uuid"},"quantity":{"description":"Quantity, default 1","type":"integer","default":1},"deliveryOptionId":{"description":"Delivery option ID from get_listing, when the listing offers several","type":["integer","null"],"default":null},"variantId":{"description":"Variant ID from get_listing, when the listing has variants","type":["string","null"],"format":"uuid","default":null},"shippingAddress":{"description":"Required for physical delivery; omit for digital listings","type":["object","null"],"properties":{"fullName":{"type":["string","null"]},"line1":{"type":["string","null"]},"line2":{"type":["string","null"]},"city":{"type":["string","null"]},"state":{"type":["string","null"]},"postalCode":{"type":["string","null"]},"countryCode":{"type":["string","null"]},"phone":{"type":["string","null"]}},"required":["fullName","line1","line2","city","state","postalCode","countryCode","phone"],"default":null},"quotedTotalNano":{"description":"Total in XNO from a recent get_listing call. Rejected if more than 2% off the live rate; omit to skip the guard","type":["number","null"],"default":null},"apiKey":{"description":"Agent API key (nag_agt_...). Omit when connected with an Authorization header","type":["string","null"],"default":null}},"required":["listingId"]}},{"name":"get_listing","description":"Fetch a single listing by ID. No API key required. Returns full detail including variants, delivery options, and pricing. Use the returned Nano total as quotedTotalNano when purchasing to guard against exchange-rate drift.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"listingId":{"description":"Listing ID from search_listings","type":"string","format":"uuid"}},"required":["listingId"]}},{"name":"get_order","description":"Polls an order placed by this agent. Returns orderStatus, escrowStatus, funding timestamps, tracking info, and the receipt ID once available. Poll after funding the deposit address, and after the seller ships, before calling confirm_delivery.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"orderId":{"description":"Order ID returned by create_purchase","type":"string","format":"uuid"},"apiKey":{"description":"Agent API key (nag_agt_...). Omit when connected with an Authorization header","type":["string","null"],"default":null}},"required":["orderId"]}},{"name":"get_receipt","description":"Returns the cryptographically signed receipt for a completed order, including the seller's Nano address, the on-chain payout block hash, and Nagora's KMS signature. Available only after escrow is Released; returns an error while the order is still in progress.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"orderId":{"description":"Order ID to fetch the receipt for","type":"string","format":"uuid"},"apiKey":{"description":"Agent API key (nag_agt_...). Omit when connected with an Authorization header","type":["string","null"],"default":null}},"required":["orderId"]}},{"name":"register_agent","description":"Creates a Nagora agent and mints its API key in one call. No Nagora account or signup required. IMPORTANT: this is a remote server with no local storage, so the key is returned ONCE in the result. Store it securely and pass it as the apiKey argument on subsequent calls in this session; for long-lived setups reconnect with an 'Authorization: Bearer <key>' header instead. Skip this tool if a credential is already configured; check with whoami.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"description":"Agent name, e.g. 'claude-shopper' (max 64 chars)","type":"string"},"nanoAddress":{"description":"Nano (XNO) address refunds should be sent to: the wallet this agent pays from","type":"string"},"contactEmail":{"description":"Optional contact email for order issues","type":["string","null"],"default":null},"homepageUrl":{"description":"Optional homepage describing the agent","type":["string","null"],"default":null},"callbackUrl":{"description":"Optional webhook URL; Nagora POSTs signed order state-change events to it","type":["string","null"],"default":null}},"required":["name","nanoAddress"]}},{"name":"search_listings","description":"Full-text search over active listings on nagora.shop. No API key required. Returns an items array and total count. Use get_listing for full detail before purchasing.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"q":{"description":"Free-text search query, e.g. 'mechanical keyboard'","type":["string","null"],"default":null},"categoryId":{"description":"Numeric category filter","type":["integer","null"],"default":null},"minPrice":{"description":"Minimum price filter","type":["number","null"],"default":null},"maxPrice":{"description":"Maximum price filter","type":["number","null"],"default":null},"sortBy":{"description":"Sort order: newest, price_asc, or price_desc. Default newest","type":["string","null"],"default":null},"startIndex":{"description":"Pagination offset, default 0","type":["integer","null"],"default":null},"count":{"description":"Page size 1-100, default 20","type":["integer","null"],"default":null}}}},{"name":"whoami","description":"Verifies the configured credential and returns the agent's identity, spending caps, callback URL, and webhook secret. Call this first to confirm the credential works.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"apiKey":{"description":"Agent API key (nag_agt_...). Omit when connected with an Authorization header","type":["string","null"],"default":null}}}}],"scan":{"score":85,"grade":"A","scanned_at":"2026-09-19T20:27:27.515Z","report":{"scannerVersion":"0.1.5","scannedAt":"2026-09-19T20:27:27.462Z","components":{"code":{"score":25,"max":25,"notes":["2 source files scanned"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1898ms"]},"poisoning":{"score":15,"max":15,"notes":["9 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 4 write-action tools with no auth"]},"maintenance":{"score":15,"max":15,"notes":["last push 9 days ago"]},"identity":{"score":7,"max":10,"notes":["namespace and repository owner differ","GitHub account older than a year","website matches verified namespace"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"}],"inputs":{"probes":[{"url":"https://api.nagora.shop/mcp","reachable":true,"authRequired":false,"latencyMs":1898,"serverInfo":{"name":"nagora-api","version":"1.0.0.0"}}],"packages":[{"registryType":"npm","identifier":"@nagora/mcp","version":"0.1.0","found":true,"license":"MIT","hasInstallScripts":false,"dependencyCount":2,"publishedAt":"2026-09-11T00:23:23.831Z","weeklyDownloads":44}],"repo":{"found":true,"owner":"m-flex","repo":"nagora-mcp","archived":false,"pushedAt":"2026-09-11T00:52:37Z","stars":0,"forks":0,"openIssues":0,"ownerType":"User","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/9053332?v=4","ownerCreatedAt":"2014-10-07T15:47:28Z","license":"MIT"},"icon":{"url":"https://nagora.shop/icon.png?bb26acdba839aa7e","source":"registry","width":256,"height":256},"presence":{"stars":0,"forks":0,"downloadsWeek":44,"license":"MIT","lastPushAt":"2026-09-11T00:52:37.000Z","score":31}}}},"grade_history":[],"reviews":[]}