Agentic Commerce Gateway

v1.0.0

A powerful MCP server built with NitroStack

Connection Setup

Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):

{
  "mcpServers": {
    // your other mcp servers
    "agentic-commerce-gateway": {
      "url": "https://agentic-commerce-gateway-6a6cafaa-rudra-srmist.app.nitrocloud.ai/mcp"
    }
  }
}

Connect remote tools directly via Claude's Web UI:

Add custom connector BETA
Connect Claude to your data and tools. Learn more about connectors or get started with pre-built ones.
Advanced settings
Only use connectors from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.

Configure custom tools directly via ChatGPT's Web UI:

New App
PNG only. Best results at 256 x 256 px or larger. Max file size: 10 KB
Custom MCP servers introduce risk. Learn more
OpenAI hasn't reviewed this MCP server. Attackers may attempt to steal your data or trick the model into taking unintended actions, including destroying data.

Add the following configuration block under mcpServers in your Antigravity configuration file (~/.gemini/config/mcp_config.json):

{
  "mcpServers": {
    // your other mcp servers
    "agentic-commerce-gateway": {
      "serverUrl": "https://agentic-commerce-gateway-6a6cafaa-rudra-srmist.app.nitrocloud.ai/mcp"
    }
  }
}

Add the following configuration block to your Codex configuration file (~/.codex/config.toml):

[mcp_servers.agentic-commerce-gateway]
url = "https://agentic-commerce-gateway-6a6cafaa-rudra-srmist.app.nitrocloud.ai/mcp"

Connect directly using the Server-Sent Events endpoint:

https://agentic-commerce-gateway-6a6cafaa-rudra-srmist.app.nitrocloud.ai/mcp
Available Tools
list_products

List the NovaGear storefront catalog (keyboards, headsets, webcams, accessories) with prices and the normal purchase quantity for each SKU. Call this first to see what an agent can buy.

place_agent_order

Simulate an incoming AI-agent purchase at NovaGear checkout. Accepts an ACP-shaped or x402-shaped payload and normalizes it into the gateway schema. Either replay a fixture order with order_ref, or construct a new one with agent_id + items. Returns the normalized order and the evidence path taken.

screen_agent

Run identity screening on the agent behind an order: registry lookup, cryptographic signature verification against the agent's registry key, blocklist status, dispute history, and (x402 only) declared amount vs catalog price. Returns pass/fail checks, not a score — call compute_trust_score next.

compute_trust_score

Score an agent order 0-100 across five weighted signals (signature 35, reputation 25, order-size anomaly 20, velocity 12, account age 8), reason over conflicting signals, and decide: approve, hold for seller review, or decline. Applies the decision to the order and logs it. Orders above ₹40,000 are always held for a human.

verify_receipt

Diff a settled sales receipt against the on-chain settlement record field by field (amount, currency, payee, per-SKU quantities). Reports every mismatch, the seller-side exposure in rupees, and the recommended action. This is what catches tampered receipts after a sale looks clean.

flag_order

Mark an order as disputed and attach the evidence behind the dispute. Use after verify_receipt finds a mismatch, or when screening evidence warrants holding the sale.

blocklist_agent

Ban a buying agent from the NovaGear store. Every future order from this agent is declined at screening before it can settle.

get_sales_dashboard

Seller view of agent-driven sales: order feed by agent, approval/hold/decline counts, flagged orders, the blocklist, and the running "revenue protected" figure — money the gateway stopped from leaving NovaGear.

reset_demo

Reset all gateway state back to the original fixtures — clears decisions, flags and the blocklist. Use between demo runs.