Razoragent
БесплатноПоддерживаетсяRazorAgent by Resence — Bounded Model Context Protocol (MCP) Commerce & Settlement Gateway for Autonomous AI Buyers
Описание
RazorAgent by Resence — Bounded Model Context Protocol (MCP) Commerce & Settlement Gateway for Autonomous AI Buyers
README
Bounded Model Context Protocol (MCP) Commerce & Settlement Gateway for Autonomous AI Buyers
Engineered by: Resence · Piyush Singh
Package Version:v1.1.5(Zero-Dependency Node.js SDK & Standalone CLI)
Live Production Gateway: https://razoragent.resence.in
NPM Package Registry: https://www.npmjs.com/package/razoragent
MCP JSON-RPC Endpoint:https://razoragent.resence.in/api/razoragent/mcp
Install Command:npm install razoragent
📦 1. What is RazorAgent?
RazorAgent is an open-source TypeScript SDK and CLI that turns a merchant's existing e-commerce backend (Shopify, WooCommerce, or a custom catalog) into a Model Context Protocol (MCP) server with pre-settlement guardrails and Razorpay order creation.
Developers install razoragent, configure their store credentials and Razorpay API keys in environment variables, and run it as an isolated service on their own infrastructure. Autonomous buying agents (such as Claude Desktop, OpenAI Operator, or custom agent frameworks) can then query the catalog, calculate tax-inclusive quotes, and create verified Razorpay orders over standard JSON-RPC 2.0.
The web interface at razoragent.resence.in and the CLI (npx razoragent) are reference deployments demonstrating the complete search, quoting, guardrail evaluation, and settlement pipeline against live APIs.
🎯 2. What RazorAgent Solves
Traditional e-commerce is built for human eyes and fingers—visual layouts, CSS styling, clickable DOM buttons, and human-in-the-loop OTP checkouts.
By 2026, commerce is transitioning to Autonomous AI Agents (OpenAI Operator, Claude Computer Use, Gemini Agentic Workflows, NPCI Unified Agent Protocol) researching and purchasing on behalf of consumers and enterprises.
However, letting AI agents interact directly with legacy checkout endpoints creates 4 critical failure modes:
- Financial Hallucinations: LLMs generating fabricated price amounts or ordering invalid product variants.
- Double-Billing from Network Jitter: AI agents retrying timed-out requests and triggering duplicate payment orders.
- Unbounded Spending: No mathematical guarantee that an agent won't exceed user budgets or liquidate inventory.
- Lack of Standardized Tooling: Fragile web scraping instead of structured tool interfaces.
RazorAgent bridges this gap. It turns any merchant store (Shopify, WooCommerce, or custom databases) into a standardized Model Context Protocol (MCP) server, enabling AI shopping agents to discover products, compute tax-accurate quotes, and complete transactions through Razorpay APIs—backed by deterministic mathematical guardrails and SHA-256 cryptographic idempotency locks.
🏛️ 3. System Architecture & Universal MCP Availability
RazorAgent is an open, universally accessible gateway. Any AI agent (Claude Desktop, OpenAI Operator, Gemini CLI, Cursor, or custom Python agent) connects via standard JSON-RPC 2.0:
flowchart TD
subgraph Client["🤖 Universal AI Buyer Clients"]
Agent1["Claude Desktop / Anthropic SDK"]
Agent2["OpenAI Operator / Function Calling"]
Agent3["Gemini 2.0 / NPCI UAP Protocol"]
end
subgraph Gateway["🛡️ RazorAgent MCP & Policy Gateway (Next.js Edge)"]
Agent1 & Agent2 & Agent3 -->|"JSON-RPC 2.0 (/api/razoragent/mcp)"| MCP["MCP Tool Dispatcher"]
MCP --> CatalogAdapter["Pluggable Catalog Adapter Layer\n(CatalogProvider Interface)"]
CatalogAdapter --> Prov1["DemoCatalogProvider\n(32+ In-Memory SKUs)"]
CatalogAdapter --> Prov2["ShopifyCatalogProvider\n(Storefront GraphQL API)"]
CatalogAdapter --> Prov3["WooCommerceCatalogProvider\n(REST API v3)"]
MCP --> Quoting["Tax & Promotion Engine\n(18% GST + Coupons)"]
Quoting --> Guardrails{"Deterministic\nPolicy Engine"}
Guardrails -->|"Budget / Qty / Category Check"| PolicyPassed["Policy Evaluated"]
PolicyPassed -->|"Pass"| Idempotency["SHA-256 Idempotency Lock\n(Anti-Race Condition)"]
PolicyPassed -->|"Fail"| Reject["Structured Error Response\n(BUDGET_EXCEEDED / QTY_LIMIT)"]
end
subgraph Settlement["💳 Razorpay Fintech Settlement"]
Idempotency -->|"Deterministic Order Payload"| RzpAPI["Razorpay Orders API\n(Dual-Mode: Sandbox / Live)"]
RzpAPI --> Order["Order ID (order_xxx)\n+ Standard Checkout Overlay"]
Order --> Webhook["HMAC-SHA256\nWebhook Signature Verifier"]
end
subgraph Console["📊 Merchant Mission Control Dashboard"]
RzpAPI --> Analytics["GMV Uplift & Analytics\n(Human vs. Agentic Split)"]
Idempotency --> AuditTrail["Live Fintech Webhook Stream"]
CatalogAdapter --> StockManager["Real-Time Inventory & Price Controls"]
end
🛠️ 4. Standardized MCP Commerce Tools
RazorAgent exposes 6 standard Model Context Protocol tools via JSON-RPC 2.0 (/api/razoragent/mcp):
| Tool Name | Parameters | Purpose |
|---|---|---|
search_products |
query, category, max_price, min_rating |
Category-aware product search and filtering across merchant inventory. |
get_product_details |
product_id |
Full technical specs, live inventory, and eligible coupon codes. |
calculate_cart_quote |
items[], coupon_code |
Computes subtotal, coupon discount, 18% GST tax, and shipping. |
evaluate_spend_policy |
cart_id |
Deterministically validates compliance against merchant guardrails. |
create_guarded_order |
cart_id, idempotency_key, buyer_email |
Creates verified Razorpay Order with SHA-256 race-condition locking. |
verify_payment_and_settle |
order_id, payment_id, signature |
Cryptographic HMAC-SHA256 verification of payment completion. |
⚡ 5. High-Availability Engineering: The Concurrency Challenge
The Problem: The LLM Non-Deterministic Retry Race Condition
During stress testing with concurrent autonomous shopping agents, simulated network jitter (1.5-second latency on order creation) triggered a critical issue:
The AI Buyer Agent assumed the request had timed out, hallucinatively mutated its nonce, and fired a concurrent retry of create_guarded_order. Because standard payment deduplication relied on client-supplied tokens, both requests reached the order creation pipeline 20 milliseconds apart, generating duplicate orders for a single cart.
The Engineering Solution:
- Canonical SHA-256 Fingerprinting: An immutable payload fingerprint:
Hash = SHA256(agent_id + canonical_sorted_cart_items + total_amount + time_window)
- Two-Phase Concurrency Latch: In-memory promise locking with atomic state transitions:
INITIATED ───► LOCKED ───► ORDER_CREATED ───► CAPTURED
Any concurrent thread hitting the gateway while an order is in-flight is held on the same promise and receives the cached order_xxx ID without firing duplicate Razorpay API calls.
- Structured Semantic Interception Feedback: Rather than returning a generic HTTP 409 conflict, the gateway returns
IDEMPOTENCY_RETRY_SUPPRESSEDwith the active order receipt, allowing the agent to proceed to payment confirmation seamlessly.
(You can verify this automatically via npx razoragent test or the "Run Tests" button in the dashboard navbar!)
🔌 6. Connecting Your Real Store (Shopify / WooCommerce / Custom)
RazorAgent uses a pluggable CatalogProvider contract. It ships with:
DemoCatalogProvider: Zero-configuration reference catalog with 32+ products across 7 categories.ShopifyCatalogProvider: Real production GraphQL adapter for Shopify Storefront API (/api/2024-01/graphql.json).WooCommerceCatalogProvider: Real REST adapter for WooCommerce (/wp-json/wc/v3/products).
CLI Store Onboarding Wizard
Connect your real merchant store in seconds via the interactive CLI wizard:
npx razoragent connect
The wizard guides you through selecting your platform (Shopify or WooCommerce), entering your storefront access credentials, performing an automated live SKU discovery verification, and saving your configuration into .env.local.
Check your active catalog source and status anytime:
npx razoragent status
Web Dashboard Onboarding
Visit the live onboarding portal at https://razoragent.resence.in/connect or click "Connect Store" in the top navigation bar to link your Shopify or WooCommerce store with instant live product previews.
Writing a Custom Merchant Adapter (~15 lines)
Any custom database, ERP, or headless backend can plug into RazorAgent by implementing the 3-method CatalogProvider contract:
import { CatalogProvider, CatalogSearchFilters, ProductItem, MCPEngine } from 'razoragent';
export class CustomPostgresCatalogProvider implements CatalogProvider {
async searchProducts(query: string, filters?: CatalogSearchFilters): Promise<ProductItem[]> {
// 1. Query your database with query & filters
const rows = await db.query('SELECT * FROM products WHERE name ILIKE $1', [`%${query}%`]);
return rows.map((r) => ({
id: r.sku,
name: r.title,
category: r.category,
price: r.price_inr,
rating: 4.8,
reviewCount: 120,
stock: r.stock_quantity,
description: r.description,
specs: { brand: r.brand },
tags: r.tags,
image: r.image_url,
}));
}
async getProductDetails(productId: string): Promise<ProductItem | null> {
const r = await db.queryOne('SELECT * FROM products WHERE sku = $1', [productId]);
return r ? { id: r.sku, name: r.title, category: r.category, price: r.price_inr, rating: 4.8, reviewCount: 120, stock: r.stock_quantity, description: r.description, specs: {}, tags: [], image: r.image_url } : null;
}
getProviderName(): string {
return 'Custom Postgres Enterprise Catalog';
}
}
// Register with RazorAgent MCP Engine
const engine = new MCPEngine(new CustomPostgresCatalogProvider());
🚀 7. Quick Start & Command Reference
Option A: Try Instantly with Demo Data (Zero Config)
# Simulate an autonomous AI agent purchasing running shoes within ₹2,000 spend cap
npx razoragent run --intent "Buy running shoes under 2000"
Option B: Connect Your Real Merchant Store
# 1. Run the interactive merchant onboarding wizard
npx razoragent connect
# 2. Check active catalog status
npx razoragent status
# 3. Simulate an AI buyer purchasing from your live catalog
npx razoragent run --intent "Find mechanical keyboard with coupon AGENT500"
CLI Command Reference
| Command | Purpose |
|---|---|
npx razoragent connect |
Interactive merchant wizard to connect real Shopify or WooCommerce storefronts. |
npx razoragent status |
Displays active catalog provider (🟢 LIVE vs 🟡 DEMO) and guardrail limits. |
npx razoragent run --intent "<text>" |
Simulates an autonomous AI buyer executing product discovery, quoting, and Razorpay order creation. |
npx razoragent test |
Runs the automated 6/6 fintech verification suite (100% assertion rate). |
npx razoragent tools |
Lists all 6 standardized Model Context Protocol (MCP) commerce tools. |
npx razoragent catalog |
Dumps current merchant SKUs, inventory counts, and price lists. |
🧪 8. Automated Verification Suite (6/6 Passing)
RazorAgent includes automated system verification suites accessible via npm run test:razoragent or the "Run Tests" button on the web UI:
Running RazorAgent Automated Test Suite...
Summary: 6/6 passed (100% Assertion Rate)
[PASSED] TEST_01_HAPPY_PATH: Happy Path Autonomous Agent Checkout (93ms)
[PASSED] TEST_02_BUDGET_GUARDRAIL: Deterministic Budget Cap Enforcement (2ms)
[PASSED] TEST_03_QUANTITY_GUARDRAIL: SKU Hoarding & Quantity Bounds Enforcement (1ms)
[PASSED] TEST_04_2AM_RACE_CONDITION: Concurrency & Duplicate Retry Suppression (0ms)
[PASSED] TEST_05_HMAC_WEBHOOK_VERIFY: HMAC-SHA256 Cryptographic Webhook & Settlement Verifier (1ms)
[PASSED] TEST_06_PLUGGABLE_CATALOG: Pluggable CatalogProvider Contract & Resolution (1ms)
🏬 9. Next.js / Express Gateway Deployment
// Example: Exposing RazorAgent MCP tools on any Next.js / Express merchant backend
import { handleMCPRequest } from 'razoragent';
export async function POST(req: Request) {
const jsonRpcBody = await req.json();
const response = await handleMCPRequest(jsonRpcBody, {
maxSpendLimitINR: 5000,
allowedCategories: ['electronics', 'apparel', 'specialty-coffee'],
maxQuantityPerItem: 3
});
return Response.json(response);
}
🗺️ 10. Scope and Roadmap
v1.x is scoped as an isolated gateway for a single merchant's catalog and Razorpay account.
The following capabilities are out of scope for the current release and planned for future iterations:
- Multi-tenant deployments hosting multiple merchant catalogs on a single instance
- Cross-merchant product discovery, federated search, and catalog aggregation
- Web dashboard user authentication and role-based access control (configuration in v1.x is managed through environment variables)
📄 License
MIT License © 2026 Resence. Open source.
Установить Razoragent в Claude Desktop, Claude Code, Cursor
unyly install razoragentСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add razoragent -- npx -y razoragentПошаговые гайды: как установить Razoragent
FAQ
Razoragent MCP бесплатный?
Да, Razoragent MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Razoragent?
Нет, Razoragent работает без API-ключей и переменных окружения.
Razoragent — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Razoragent в Claude Desktop, Claude Code или Cursor?
Открой Razoragent на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
Roblox Studio
Enables AI coding tools to control Roblox Studio for workspace exploration, instance manipulation, and script management. It provides tools for playtesting, sce
автор: paralovAWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
автор: lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
Compare Razoragent with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
