Freedom Commerce Protocol

Freedom Commerce Protocol

The Agent-Native Marketplace — where AI agents discover, negotiate, and purchase services without a single line of HTML. Freedom Commerce is an open protocol and reference implementation for agentic commerce

Category
访问服务器

README

🕊️ Freedom Commerce Protocol

The Agent-Native Marketplace — where AI agents discover, negotiate, and purchase services without a single line of HTML.

"If agents will orchestrate $3–5T in commerce by 2030, they need a marketplace built for them, not for humans with browsers."

Freedom Commerce is an open protocol and reference implementation for agentic commerce — a marketplace API designed from the ground up for machine-to-machine transactions. No CAPTCHAs, no DOM parsing, no brittle browser automation. Pure JSON, MCP tool definitions, and protocol-driven negotiation.


Why This Exists

Today's web was built for humans. AI agents navigating it face:

❌ CAPTCHAs that block automated access
❌ JavaScript-heavy pages that break DOM parsing
❌ Inconsistent structures — every site is different
❌ No machine-readable pricing — agents can't compare offers
❌ No negotiation protocol — take it or leave it
❌ No standard checkout — every payment flow is unique

Freedom Commerce flips this: the API is the storefront. Agents call JSON endpoints, get MCP tool definitions, negotiate pricing, and transact — all in milliseconds.

Current web → Human browses HTML, fills forms, clicks buttons Freedom Commerce → Agent calls POST /api/purchase, gets receipt back


How It Works

┌─────────────┐     ┌──────────────────┐     ┌─────────────────┐
│  AI Agent   │────▶│  Freedom Commerce │────▶│  Service        │
│  (Claude,   │     │  Protocol API     │     │  Providers      │
│   GPT,      │◀────│  (localhost:4000) │◀────│  (APIProxy,     │
│   Grok,     │     │                   │     │   DataForge...) │
│   etc.)     │     └──────────────────┘     └─────────────────┘
│             │            │
│  Discovers  │            │ MCP Tool Definitions
│  Negotiates │            │ Agent-to-Agent Negotiation
│  Purchases  │            │ ACP-compatible Payments
└─────────────┘            └──────────────────────────────────

Agent Flow

  1. Discover — GET /api/services?category=infrastructure&maxPrice=10
  2. Inspect — GET /api/services/{id} for full details + provider info
  3. Compare — GET /api/mcp/tools to see all purchase options as MCP tool definitions
  4. Negotiate (optional) — POST /api/negotiate with your offer price
  5. Purchase — POST /api/purchase → get signed receipt

Architecture

freedom-commerce/
├── server.js              # HTTP server — agent-first API
├── lib/
│   └── registry.js        # Service registry, negotiation engine, MCP tool generator
├── protocols/             # (ready for ACP, UCP, A2A protocol adapters)
├── public/
│   └── index.html         # Human dashboard (for monitoring only)
├── package.json
└── README.md

Core Concepts

Concept Description
Provider A service seller (APIProxy, DataForge, LogTail, etc.)
Service A purchasable offering with price, category, terms
MCP Tool A machine-readable action definition an agent can invoke
Negotiation An agent-to-agent price discussion with counter-offers
Transaction A completed purchase with cryptographic receipt

API Reference

All endpoints return application/json. Agents identify themselves via X-Agent-ID header.

Discovery

GET /api/services

Query parameters for agent-driven filtering:

Parameter Type Example Description
category string infrastructure Filter by category
maxPrice number 10 Maximum price
minRating number 4.0 Minimum provider rating
keywords string proxy Text search in name + description

Response:

{
  "query": { "category": "infrastructure", "maxPrice": 10 },
  "count": 3,
  "services": [
    {
      "name": "API Proxy — 10k requests",
      "category": "infrastructure",
      "price": 4.99,
      "currency": "USD",
      "description": "10,000 API proxy requests with global CDN caching",
      "deliveryTime": "instant",
      "terms": "Monthly subscription, cancel anytime",
      "provider": { "name": "APIProxy", "rating": 4.8 }
    }
  ]
}

MCP Tool Definitions

GET /api/mcp/tools

Returns tool definitions compatible with the Model Context Protocol. Agents use these to understand what purchase actions are available.

{
  "protocol": "MCP/1.0",
  "tools": [
    {
      "name": "purchase_api_proxy_10k",
      "description": "Purchase: API Proxy — 10k requests",
      "inputSchema": {
        "type": "object",
        "properties": {
          "quantity": { "type": "number" },
          "maxPrice": { "type": "number" }
        },
        "required": ["quantity"]
      },
      "_acp": {
        "price": 4.99,
        "currency": "USD",
        "paymentEndpoint": "/api/payments/svc_xxx"
      }
    }
  ]
}

Purchase

POST /api/purchase
Content-Type: application/json
X-Agent-ID: my-agent

{
  "serviceId": "svc_xxx",
  "quantity": 2
}

Response:

{
  "transaction": {
    "id": "txn_1747432892",
    "status": "completed",
    "price": 9.98,
    "currency": "USD"
  },
  "receipt": "FCP-txn_1747432892"
}

Negotiation (Agent-to-Agent)

POST /api/negotiate
Content-Type: application/json
X-Agent-ID: my-agent

{
  "serviceId": "svc_xxx",
  "offer": { "price": 3.99 }
}

Provider counter-offers:

POST /api/negotiate/{id}/counter
{ "price": 4.50 }

Agent accepts:

POST /api/negotiate/{id}/accept

Marketplace Stats

GET /api/stats
{
  "totalProviders": 5,
  "totalServices": 8,
  "totalTransactions": 42,
  "totalRevenue": 249.50,
  "activeNegotiations": 3
}

Quick Start

# Clone
git clone https://github.com/BARRYPMARSHALL/freedom-commerce.git
cd freedom-commerce

# Run (no dependencies needed — pure Node.js)
node server.js

# The marketplace starts with 8 demo services from 5 providers
# Agent API: http://localhost:4000/api/services
# Dashboard: http://localhost:4000/

No npm install required. Zero external dependencies. Pure Node.js http module.


Seeded Services

The server starts with a pre-seeded marketplace for demonstration:

Service Provider Category Price
API Proxy — 10k req APIProxy infrastructure $4.99
API Proxy — 100k req APIProxy infrastructure $29.99
Synthetic Dataset — 1k rows DataForge data $9.99
Synthetic Dataset — 10k rows DataForge data $49.99
Log Ingestion — 1GB/mo LogTail infrastructure $14.99
Email Sending — 1k emails MailJet communication $2.99
Serverless Compute — 10hr ComputeCells compute $5.99
GPU Compute — 1hr A100 ComputeCells compute $2.49

Protocol Compatibility

Freedom Commerce is designed to bridge with emerging agent commerce protocols:

Protocol Status Description
MCP (Model Context Protocol) ✅ Native Tool definitions auto-generated for every service
ACP (Agentic Commerce Protocol) 🔧 Adapter ready Stripe/OpenAI payment standard — add your Stripe key
UCP (Universal Commerce Protocol) 🔧 Adapter ready Shopify/Google standard for catalog discovery
A2A (Agent-to-Agent) 🔧 Future Google's agent interoperability protocol

Deployment

Local (ngrok)

# Start the server
node server.js &

# Expose via ngrok
ngrok http 4000

Production (Railway / Fly.io / Render)

The server is stateless and deploys as a single process. No build step needed.

# Example: Deploy to Railway
railway login
railway init
railway up

Set PORT environment variable for your platform's assigned port.


What Makes This Different

Traditional E-Commerce Freedom Commerce
Customer Human with browser AI agent
Interface HTML + CSS + JS JSON API + MCP tools
Discovery SEO, ads, search GET /api/services?category=X
Comparison Manual tab-switching maxPrice + minRating filters
Pricing Fixed, human-negotiated Agent-to-agent negotiation protocol
Checkout Forms + CAPTCHAs POST /api/purchase → receipt
Time to purchase Minutes < 100ms

The Vision

Freedom Commerce is step one toward an agent-native economy where:

  • Agents manage subscriptions, reorder supplies, compare and switch providers autonomously
  • Providers compete on API quality, not SEO or ad spend
  • Humans set budgets and policies — agents execute
  • Markets clear in milliseconds, not days
  • Protocols (MCP, ACP, UCP) create a universal layer for machine commerce

The $3–5 trillion projection isn't about humans shopping faster — it's about agents shopping for us. But agents can't shop on a web built for eyeballs. They need APIs, tool definitions, and protocols. That's what this is.


License

MIT — build on it.


Built by Freedom 🕊️ for Barry Marshall


💰 Crypto Payment Rails

Freedom Commerce is built on crypto-native payments — because agents don't have bank accounts, they have wallets.

Supported Payment Methods

Method Chain Token Fee Settlement
USDC Transfer Base L2 USDC 0.5% protocol fee ~12 seconds
x402 Micropayments Base L2 USDC 0.5% protocol fee ~$0.001 gas
Escrow Contract Base L2 USDC 0.5% protocol fee On-chain final
Native ETH Ethereum ETH 0.5% ~12 seconds
Native SOL Solana SOL 0.5% ~2 seconds

Why Crypto?

Fiat payment rails (Stripe, PayPal) fail for agent commerce:

Problem Fiat Crypto
Minimum transaction $0.50 minimum 0.000001 cents
Settlement time 2-3 business days ~12 seconds (Base L2)
KYC requirements Must be a person Wallet only
Chargebacks 180 days of risk Final settlement
Cross-border fees 3%+ currency fees Same cost everywhere
Agent autonomy Impossible (no human) Fully programmable

Crypto API Endpoints

POST /api/crypto/pay          → Create USDC payment request
POST /api/crypto/verify       → Verify on-chain payment
POST /api/crypto/escrow       → Create escrow contract
POST /api/crypto/escrow/:id/deposit   → Deposit into escrow
POST /api/crypto/escrow/:id/release   → Release funds
POST /api/crypto/escrow/:id/refund    → Refund (dispute)
POST /api/crypto/x402         → x402 micropayment request
GET  /api/crypto/methods      → Supported chains/tokens
GET  /api/crypto/quote        → Fee quote
GET  /api/crypto/solidity     → Escrow contract template
GET  /api/crypto/stats        → Payment statistics

Protocol Architecture

┌──────────────┐     ┌──────────────────┐     ┌──────────────┐
│   AI Agent   │────▶│ Freedom Commerce │────▶│   Provider   │
│  (Wallet)    │     │  (Marketplace)   │     │  (Wallet)    │
│              │     │                  │     │              │
│  1. Discover │     │  3. Create       │     │  5. Deliver  │
│     services │     │     escrow       │     │     service  │
│  2. Negotiate│     │  4. Both deposit │     │  6. Confirm  │
│     price    │     │     USDC         │     │              │
│              │     │                  │     │              │
│              │     │  7. Release      │     │              │
│              │     │     funds        │     │              │
│              │     │  8. Protocol fee │     │              │
└──────────────┘     └──────────────────┘     └──────────────┘
                              │
                     ┌────────┴────────┐
                     │    On-Chain     │
                     │    (Base L2)    │
                     │  USDC + Escrow  │
                     └─────────────────┘

Quick Start with Crypto

# 1. Discover a service
curl http://localhost:4000/api/services?category=infrastructure

# 2. Get a crypto quote
curl "http://localhost:4000/api/crypto/quote?amount=10"

# 3. Create an escrow (agent + provider deposit USDC)
curl -X POST http://localhost:4000/api/crypto/escrow \
  -H "Content-Type: application/json" \
  -d '{"agentWallet":"0xAgent...","providerWallet":"0xProvider...","amount":10}'

# 4. Agent deposits into escrow
curl -X POST http://localhost:4000/api/crypto/escrow/ESCROW_ID/deposit \
  -d '{"wallet":"0xAgent...","party":"agent"}'

# 5. Provider deposits
curl -X POST http://localhost:4000/api/crypto/escrow/ESCROW_ID/deposit \
  -d '{"wallet":"0xProvider...","party":"provider"}'

# 6. Release funds on delivery
curl -X POST http://localhost:4000/api/crypto/escrow/ESCROW_ID/release

Deploying the Escrow Contract

A complete Solidity escrow contract is available at:

GET /api/crypto/solidity

Deploy to Base L2:

# Using Foundry
forge create FreedomEscrow \
  --rpc-url https://base-rpc.publicnode.com \
  --private-key $YOUR_KEY \
  --constructor-args $AGENT_ADDR $PROVIDER_ADDR $FEE_COLLECTOR $USDC_BASE $AMOUNT $DEADLINE

Roadmap

  • [x] USDC payments on Base L2
  • [x] x402 micropayment protocol
  • [x] On-chain escrow with Solidity contract
  • [x] Multi-chain support (ETH, SOL, MATIC)
  • [ ] Deploy escrow contract to Base mainnet
  • [ ] Coinbase Smart Wallet integration
  • [ ] Cross-chain settlement (LayerZero/Wormhole)

🚀 Deployment

Railway (Recommended)

# Install Railway CLI
npm install -g @railway/cli

# Deploy
railway login
cd freedom-commerce
railway init
railway up

Docker

docker build -t freedom-commerce .
docker run -p 4000:4000 freedom-commerce

Manual

git clone https://github.com/BARRYPMARSHALL/freedom-commerce.git
cd freedom-commerce
node server.js

Environment Variables

Variable Default Description
PORT 4000 HTTP server port
FEE_WALLET 0xFreedom_Fee_Collector Protocol fee recipient

🤝 MCP Integration

Freedom Commerce is registered in the Awesome MCP Servers directory (PR #5570 pending).

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "freedom-commerce": {
      "command": "node",
      "args": ["/path/to/lib/mcp-server.js"]
    }
  }
}

Any MCP Client

The endpoint returns full MCP-compatible tool definitions:

GET /api/mcp/tools

🏆 Agent Commerce Badge

Add this badge to your GitHub repo to show your project is agent-tradable:

[![Tradable on Freedom Commerce](https://img.shields.io/badge/🕊️_Trade_on-Freedom_Commerce-7c5cfc)](https://github.com/BARRYPMARSHALL/freedom-commerce)

Tradable on Freedom Commerce

Every repo with this badge is discoverable by AI agents via the marketplace.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选