送信

Orbis Commerce Mcp

@OrbisAPI

Access 2,300+ e-commerce and retail APIs through a single MCP. Look up barcodes and UPC codes, search Walmart and eBay products, parse product pages, and more. Pay-per-call in USDC via x402 on Base — no API keys, no subscriptions.
概要

Orbis Commerce & Retail MCP 🛒

Real product search, barcode lookup, and retail data APIs for AI agents. Pay per call with USDC on Base — no API keys, no accounts, no subscriptions.

MCP x402

What's Actually In Here

These are the most-called APIs in this domain on Orbis:

APICallsWhat it does
Barcode Validator API327Validate any barcode format and check legitimacy
Retail UPC Data206Look up full product data from a UPC code
Walmart Product Search API164Search Walmart for products with live prices
AI Product Description Generator API35Generate SEO product descriptions from specs
eBay Product Search API33Search eBay listings with prices and availability
Ecommerce Product Page Parser API32Parse any product page into structured JSON
Amazon Reviews & Ratings API31Fetch Amazon reviews and rating breakdowns
Barcode Data API31Detailed product info from barcode/UPC
Amazon Product Search API29Search Amazon products with prices and specs
UPC Product Lookup18Look up product details by UPC code
Product Review Summary16Summarize customer reviews into pros/cons
Barcode Validate15Validate barcode checksums and formats
Barcode Decode14Decode barcode images and strings

Quick Start

No API key needed. No account. Paste into your MCP client:

Claude Desktop / Claude Code

{
  "mcpServers": {
    "orbis-commerce": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://orbisapi.com/api/mcp/commerce"]
    }
  }
}

Config path: ~/Library/Application Support/Claude/claude_desktop_config.json

Cursor / Windsurf / Cline

{
  "mcpServers": {
    "orbis-commerce": {
      "url": "https://orbisapi.com/api/mcp/commerce"
    }
  }
}

OpenAI Codex CLI

# ~/.codex/config.yaml
mcpServers:
  orbis-commerce:
    type: url
    url: "https://orbisapi.com/api/mcp/commerce"

Example Prompts

Once connected, try:

  • "Look up this barcode and tell me what product it is: 012345678905"
  • "Search Walmart for protein powder under $40 — show me prices and ratings"
  • "Find this product on Amazon and eBay and compare the prices: 'Sony WH-1000XM5'"
  • "Parse this product page and give me the specs as JSON: https://..."
  • "Summarize the customer reviews for this Amazon product into pros and cons"
  • "Validate this UPC code and look up the product: 036000291452"

Direct x402 Usage (Node.js)

import { wrapFetchWithPayment } from "x402-fetch";
import { privateKeyToAccount } from "viem/accounts";
import { createWalletClient, http } from "viem";
import { base } from "viem/chains";

const account = privateKeyToAccount(process.env.WALLET_PRIVATE_KEY);
const walletClient = createWalletClient({ account, chain: base, transport: http() });
const fetch = wrapFetchWithPayment(globalThis.fetch, walletClient);

// Walmart product search — 164 real calls on Orbis
const resp = await fetch(
  "https://orbisapi.com/api/proxy/walmart-product-search-api-87729d/search",
  { method: "POST", headers: { "Content-Type": "application/json" },
    body: JSON.stringify({ query: "running shoes", limit: 5 }) }
);
console.log(await resp.json());

See example.mjs for a full working script.

All Orbis Domain MCPs

DomainURL
₿ Crypto & Blockchainhttps://orbisapi.com/api/mcp/crypto
🔍 Research & Datahttps://orbisapi.com/api/mcp/research
🛒 Commerce & Retailhttps://orbisapi.com/api/mcp/commerce
✈️ Travelhttps://orbisapi.com/api/mcp/travel
🌐 All 20,000+ APIshttps://orbisapi.com/api/mcp

Built by Orbis — the API marketplace for AI agents.

Connect

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "orbis-commerce": { "url": "https://orbisapi.com/api/mcp/commerce" }
  }
}

OpenAI Agents SDK

Python:

from agents.mcp import MCPServerStreamableHttp
from agents import Agent, Runner

mcp = MCPServerStreamableHttp(url="https://orbisapi.com/api/mcp/commerce")

agent = Agent(
    name="Orbis Commerce Agent",
    model="gpt-4o",
    mcp_servers=[mcp]
)

result = await Runner.run(agent, "Browse available commerce APIs")
print(result.final_output)

TypeScript:

import { Agent, run } from "@openai/agents";
import { MCPServerStreamableHttp } from "@openai/agents/mcp";

const mcp = new MCPServerStreamableHttp({
  url: "https://orbisapi.com/api/mcp/commerce",
});

const agent = new Agent({
  name: "Orbis Commerce Agent",
  model: "gpt-4o",
  mcpServers: [mcp],
});

const result = await run(agent, "Browse available commerce APIs");
console.log(result.finalOutput);

Calls are billed per-use in USDC via x402 on Base mainnet. No subscription, no API key required.

サーバー設定

{
  "mcpServers": {
    "orbis-commerce": {
      "url": "https://orbisapi.com/api/mcp/commerce"
    }
  }
}