Getting Started

What is MOTE?

MOTE is the first AI agent registry for businesses. One $10 registration gives your business a permanent on-chain identity and broadcasts it to every major AI agent network on the internet.

AI agents are the new economic actors. They browse, evaluate, and transact on behalf of humans — 24/7, without anyone clicking anything. For an agent to find your business, book your services, or pay your endpoints, you need to be visible on the infrastructure they use.

MOTE handles all of it. You pay once. We create your Decentralised Identifier (DID) on the Sui blockchain, generate your machine-readable files, and submit your business to every major AI agent registry and LLM crawler directory.

Why it matters

A16z projects $30 trillion in autonomous agent transactions by 2030. Visa observed a 4,700% surge in AI-driven retail traffic in 2025. If your business isn't on agent-readable infrastructure, it doesn't exist to them.

How it works

Registration takes under two minutes. Here's what happens when you register:

1

Pay $10 via Stripe

No crypto wallet required. Standard card payment. No subscriptions, no recurring fees. One flat fee, permanent registration.

2

Fill in your business profile

After payment, complete your dashboard — business details, location, hours, tags, keywords, products, and pricing. The more complete your profile, the more queries your business matches.

3

DID anchored to Sui blockchain

Your did:pkh:sui identifier is written to the Sui blockchain in ~0.4 seconds. It is immutable and permanent. Nobody — not even MOTE — can revoke it.

4

Submitted to all registries

MOTE submits your profile to the official Anthropic MCP Registry, Smithery, PulseMCP, mcpservers.org, and every LLM crawler directory. Within 24 hours your business is discoverable across the AI agent ecosystem.

Getting Started

How it all works

From registration to discovery — here's the full flow of how your business gets into the hands of AI agents.

Merchant registers

Name, email, category, website

$10 via Stripe

Fills in dashboard profile

Description, prices, location, hours, tags, keywords, products

MOTE database

All merchant data stored

Auto-generated in 3 formats

JSON API

/v1/merchants/:id

llms.txt

Plain text for AI

MPP manifest

Payment metadata

All hosted at public URLs on mote.network

Two ways agents discover your business

Path 1: MCP server install

Developer installs MOTE

npx mote-registry

Agent queries MOTE

search_merchants tool

Path 2: Open web crawling

AI crawler visits URL

No install needed

Reads merchant llms.txt

ChatGPT, Perplexity, Grok, Google AI

Agent finds your business

"Thai food in Nashville under $30"

Customer contacts you

Quickstart

The fastest way to register is through the web interface. No CLI required.

Web registration

Go to mote.network/register, enter your business details, and pay $10. Your DID is created and your profile is live within minutes.

API registration

If you're integrating programmatically, use the MOTE API:

# Register a new merchant
curl -X POST https://mote-api-production.up.railway.app/v1/merchants \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Coffee Co.",
    "category": "Food & Beverage",
    "description": "Specialty coffee roaster in Brooklyn",
    "endpoint": "https://acmecoffee.com/api"
  }'
# Response
{
  "id": "mote_abc123",
  "did": "did:pkh:sui:0x1a2b3c...",
  "status": "registered",
  "registries": ["x402", "virtuals", "claude-mcp", "openserv"],
  "created_at": "2026-03-26T..."
}

Getting Started

Your Business Profile

The more information you add to your dashboard, the more agent queries your business matches. MOTE uses your profile data to generate your machine-readable files — every field you complete makes your listing more specific and more findable.

Core details

Business name, category, description, location, phone number, website, and hours. These are the fields agents use to match location-based and category-based queries — "find me a florist in Austin" or "book a consultant in London."

Tags and keywords

Tags are broad descriptors (vegetarian, pet-friendly, same-day delivery). Keywords are specific search terms you want to rank for. Both are added as pills in your dashboard and written directly into your machine-readable files. An agent searching for "gluten-free catering in Nashville" matches on keywords — not just category.

Products and pricing

Add individual products or services with names, descriptions, prices, and categories. This is how agents answer specific pricing queries — "find me a graphic designer under $150/hour" or "coffee shops with cold brew under $8." Without products and pricing, your business can only match category-level queries.

Offers

Time-limited offers and promotions. Agents surfacing deals and discounts read this field directly.

Booking and delivery

Booking URL and delivery radius. Agents handling appointment booking or delivery matching use these fields to qualify your business against the request.

Why this matters

A business with only a name and category matches a handful of queries. A business with complete tags, keywords, products, and pricing matches hundreds. Your $10 registration is permanent — your relevance grows as you complete your profile.

Decentralised Identity (DID)

A DID is a globally unique identifier anchored to a public blockchain. Unlike a Google Business listing or an Yelp profile, a DID cannot be suspended, removed, or controlled by any platform — including MOTE.

MOTE uses the did:pkh:sui method, which derives your identifier from your Sui wallet public key. This means your identity is cryptographically tied to a key you control.

DID Document

Your DID resolves to a DID Document — a JSON file describing your business, its service endpoints, and verification methods. This is what AI agents read when they discover your business.

{
  "@context": "https://www.w3.org/ns/did/v1",
  "id": "did:pkh:sui:0x1a2b3c...",
  "verificationMethod": [{
    "id": "did:pkh:sui:0x1a2b3c...#key-1",
    "type": "Ed25519VerificationKey2020",
    "publicKeyMultibase": "z..."
  }],
  "service": [{
    "id": "#mpp",
    "type": "MachinePaymentProtocol",
    "serviceEndpoint": "https://mote.network/m/abc123"
  }]
}

Permanence

Once written to Sui, your DID cannot be deleted. This is by design. Your business's on-chain identity and reputation are permanent assets.

AI Agent Registries

MOTE submits your business to all major agent discovery networks automatically. Here's what each registry enables:

Registry What it enables Status
Official Anthropic MCP Registry MOTE's MCP server is listed alongside Microsoft and GitHub. Claude Desktop users who install MOTE can search registered merchants directly. Live
Smithery MOTE is listed on Smithery (mote/registry). Developers building on Smithery can connect to MOTE's remote HTTP MCP server. Live
PulseMCP Auto-ingests from the MCP Registry weekly. Live
mcpservers.org Community MCP directory. MOTE approved and listed. Live
llms.txt Your machine-readable listing is hosted at a public MOTE URL. AI crawlers including Grok, ChatGPT, Perplexity, and Google AI can read it directly — no install required. Grok indexed and queried MOTE live in March 2026. Live
Sui On-chain Permanent on-chain record. Any agent querying the Sui blockchain can verify your identity and reputation. Live
402index.io x402 payment directory. Requires Phase 2 payment gate. Phase 2

Machine Endpoints

A machine endpoint is a URL that AI agents can call to interact with your business programmatically. MOTE generates a standard endpoint for every registered business and hosts it at mote.network/m/{id}.

Your endpoint returns a machine-readable manifest describing your business, its capabilities, pricing, and payment methods. An agent querying your endpoint gets everything it needs to transact with you in a single HTTP call.

Endpoint manifest

GET https://mote.network/m/abc123

{
  "name": "Acme Coffee Co.",
  "did": "did:pkh:sui:0x1a2b3c...",
  "category": "Food & Beverage",
  "description": "Specialty coffee roaster in Brooklyn",
  "payment": {
    "protocol": "mpp-sui",
    "method": "@t2000/mpp-sui",
    "network": "base",
    "token": "USDC"
  },
  "reputation": {
    "jobs_completed": 42,
    "score": 97
  }
}

Reputation

Every fulfilled order via MOTE is recorded on-chain against your DID. This builds a tamper-proof, portable reputation score that travels with your business identity — across every platform and every agent network.

Unlike platform ratings (which disappear if you leave the platform), your MOTE reputation is anchored to your DID. It compounds over time and becomes increasingly valuable as more agents use reputation data to make booking decisions.

Coming soon

Reputation scoring is currently in development as part of the MOTE Bazaar. Early registrants will have a head start in building on-chain track records.

Coming in Phase 2

MPP Protocol

MPP (Machine Payment Protocol) is the standard MOTE will use for agent-to-business payments in Phase 2. It handles the full payment flow: challenge, verification, and on-chain settlement via USDC on Sui.

Phase 2 — The Bazaar

Agent-initiated payments are not live in Phase 1. Every business registered in Phase 1 is automatically included in Phase 2 from day one.

Coming in Phase 2

x402 Payments

x402 is the open HTTP payment protocol developed by Coinbase and Cloudflare. MOTE will use x402 to make merchant endpoints payable by any agent in Phase 2 — without accounts, API keys, or subscriptions.

Phase 2 — The Bazaar

x402 payment gates are not live in Phase 1. Registration now means your business is automatically included when Phase 2 launches.

llms.txt

llms.txt is the emerging standard for making websites readable by LLM crawlers — analogous to robots.txt for search engines. MOTE generates and hosts an llms.txt file for your business automatically.

This ensures that every major LLM web crawler — including those used by ChatGPT, Claude, Gemini, and Perplexity — can index your business profile in a structured, machine-readable format.

# Your llms.txt (auto-generated by MOTE)
# Hosted at: mote.network/m/abc123/llms.txt

name: Acme Coffee Co.
category: Food & Beverage
description: Specialty coffee roaster in Brooklyn
did: did:pkh:sui:0x1a2b3c...
payment: mpp-sui
endpoint: https://mote.network/m/abc123

Integration

MCP Server

MOTE runs two MCP servers — a stdio server for Claude Desktop installs and a remote HTTP server for developers and platforms like Smithery.

Two discovery paths — one requires nothing

Path 2 is the default and requires zero setup. AI crawlers including Grok, ChatGPT, Perplexity, and Google AI read your machine-readable listing directly from MOTE's public URLs — automatically, with no install required. This is how most businesses will be discovered today.

Path 1 is for developers. The MCP server requires a manual config file edit in Claude Desktop — a technical step that most business owners won't do. If you're building agent workflows or integrating MOTE into your own tools, Path 1 gives you structured query access to the full registry.

stdio install (Claude Desktop)

FOR DEVELOPERS

Installing the MOTE MCP server requires editing a JSON config file in Claude Desktop. This is a developer workflow. If you're a business owner, you don't need to do this — your listing is already discoverable via Path 2 automatically.

MOTE is listed in the official Model Context Protocol registry at registry.modelcontextprotocol.io — maintained by Anthropic, alongside Microsoft, GitHub, and hundreds of other tools. To install in Claude Desktop:

{
  "mcpServers": {
    "mote-registry": {
      "command": "npx",
      "args": ["mote-registry"]
    }
  }
}

Once installed, Claude can run four tools against the MOTE registry: search_merchants (search by category, location, keyword), get_merchant (full profile by ID), list_categories (all registered business categories), and get_merchant_products (products and pricing for a specific merchant).

Remote HTTP server (developers)

MOTE also runs a remote HTTP MCP server with full SSE support. No install required — connect directly from any agent framework or platform.

Endpoint:  https://mote-api-production.up.railway.app/mcp/sse
Transport: HTTP/SSE
Auth:      None (public)
Tools:     search_merchants, get_merchant, list_categories,
           get_merchant_products, search (ChatGPT-compatible),
           fetch (ChatGPT-compatible)

The remote server supports both SSE sessions and single-request mode. ChatGPT Deep Research compatible via the search and fetch tools.

Listed on Smithery

MOTE is live on Smithery at mote/registry. Smithery users can connect to the remote HTTP server directly.

API Reference

Base URL: https://mote-api-production.up.railway.app

Register a merchant

POST /v1/merchants Create a new merchant registration
FieldTypeRequiredDescription
namestringrequiredBusiness name
categorystringrequiredBusiness category
descriptionstringrequiredShort description
endpointstringoptionalYour API endpoint URL
walletstringoptionalSui wallet address for payments

Get merchant

GET /v1/merchants/:id Retrieve merchant profile

Returns the full merchant profile including DID, endpoints, registry status, and reputation score.

List merchants

GET /v1/merchants Search and filter merchants
ParamTypeDescription
categorystringFilter by business category
qstringFull-text search
limitnumberResults per page (default: 20)

Initiate payment

POST /v1/merchants/:id/pay MPP payment challenge/verify

Returns a 402 payment challenge on first call. Submit the signed payment proof to verify and complete the transaction.

HeaderDescription
X-PaymentSigned payment proof (base64 encoded)
X-WalletAgent wallet address

FAQ

No. You pay with a standard credit or debit card via Stripe. MOTE handles all blockchain interaction. No wallet, no crypto knowledge required.

A DID (Decentralised Identifier) is your business's permanent identity anchored to a public blockchain. Unlike a Google listing or Yelp profile, nobody can remove or suspend it. AI agents use your DID to verify your identity and check your reputation.

A permanent on-chain DID on the Sui blockchain. Machine-readable listings hosted by MOTE — your llms.txt and agent profile in the correct formats for AI crawlers and MCP tools. Submission to the official Anthropic MCP Registry, Smithery, PulseMCP, and mcpservers.org. A self-custody download package. Six months of auto-submission to new registries as they emerge. Verified reputation tracking from day one.

About two minutes to complete the form. Your DID is created immediately. Your listings are live within 24 hours.

No. Your DID is written to the Sui blockchain and is immutable. MOTE has no ability to delete or revoke it. Your identity is yours, permanently.

MOTE anchors identity on Sui — fast (sub-second finality), cheap (fractions of a cent per transaction), and built for object-oriented ownership. Agent payment settlement via x402 is Phase 2.

Two discovery paths work today. Path 1: developers install MOTE's MCP server in Claude Desktop and agents can search registered merchants directly. Path 2: AI crawlers including Grok, ChatGPT, Perplexity, and Google AI read merchant listings from MOTE's public URLs — no install required. Grok indexed MOTE's listings and queried our API live in March 2026. Agent transaction volume industrywide is early — MOTE guarantees discoverability, not traffic volume.

More questions? Visit mote.network/faq or email us.

Glossary

TermDefinition
DIDDecentralised Identifier. A globally unique, blockchain-anchored identity that nobody controls.
MCPModel Context Protocol. Anthropic's standard for giving Claude access to external tools.
MCP ServerModel Context Protocol server. MOTE runs both a stdio server (Claude Desktop) and a remote HTTP server (developers and Smithery).
llms.txtA machine-readable file hosted by MOTE that tells AI crawlers exactly what your business offers — name, category, description, location, tags, products, and pricing.
SuiThe Layer 1 blockchain MOTE uses for identity anchoring and settlement.
USDCUSD Coin. The primary stablecoin used for agent payments.

© 2026 MOTE Protocol · Privacy Policy · Terms of Service