Urgent.News

What's breaking now, across thousands of outlets.

Tech

NorthCinder Adds Buyer Approval to MCP Shopping Workflows

NorthCinder is an open-source MCP server intended to let an AI app compare products from sources selected by the buyer, show supporting facts, and obtain approval before a purchase. For developers building agentic-commerce flows, its practical distinction is that recommendation and checkout are deliberately separate: a checkout requires fresh approval for one exact offer and one unit. The project…

NorthCinder, an open-source MCP server, has added buyer approval to its shopping workflows. The software allows an AI app to compare products from sources selected by the buyer, show supporting facts, and obtain approval before a purchase. The recommendation and checkout processes are deliberately separated, requiring fresh approval for one exact offer and one unit.

NorthCinder's built-in adapters cover Shopify, WooCommerce, eBay, Etsy, and read-only Amazon comparison. The recommendation output is designed to be narrow, typically showing no more than three useful choices. Checkout remains explicitly gated, with raw card details rejected and a supported automated checkout using an opaque payment token or a cart link for completion.

NorthCinder's separation of product and seller research from ranking, along with per-offer approval, makes it a more credible boundary than treating a shopping agent as an autonomous buyer.

Brief written by urgent.news from Dev.to's own syndicated text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

MVCC Explained: Build Postgres-Style Snapshots in 100 Lines of TypeScript

Open two psql sessions. Session A: BEGIN ; DELETE FROM users ; -- deletes all 1 million rows -- don't commit yet Session B: SELECT count ( * ) FROM users ; -- count: 1000000 Session A deleted every…

  • MVCC enables readers and writers to coexist without interference in databases.
  • Updates and deletes are implemented by appending new versions while preserving old versions.
  • DELETE is marked as dead, allowing old versions to persist in the database.

More from Thursday 27 August →