A powerful MCP server built with NitroStack
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:
Configure custom tools directly via ChatGPT's Web UI:
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
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.
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.
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.
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.
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.
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.
Ban a buying agent from the NovaGear store. Every future order from this agent is declined at screening before it can settle.
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 all gateway state back to the original fixtures — clears decisions, flags and the blocklist. Use between demo runs.