Thanks to visit codestin.com
Credit goes to agents.melis.ai

x402 Protocol USDC on Base MCP-native

Boring infrastructure
for AI agents.

22 pay-per-call x402 utility APIs for AI agents — pay per call in USDC on Base, no accounts, no API keys, no subscriptions.

  • Charge-on-failure-safe fleet. Payment only settles on successful 2xx + non-empty content. Robots.txt enforced. SSRF-hardened across all 22 services.
  • Composes naturally. Each service is a building block: scrape → clean → guard → validate → notify. Canonical workflows in the Compose guide.
  • One install. npx @melis-ai/x402-tools-mcp gives any MCP-aware agent access to the full catalogue.
Paper-craft beehive diorama — tiny worker figurines in each hexagonal chamber doing different utility tasks, representing the 22 melis x402 services

22 services. Zero subscriptions.

Each call is a discrete payment. Your agent pays only for what it uses.

live
web $0.010 USDC

ScrapePay

Web extraction via Playwright. Charge-on-failure-safe.

30d activity 8h ago
View →
web $0.005 USDC

MarkdownOpt

URL or HTML → clean LLM-ready markdown. ~70% token reduction.

30d activity 1d ago
View →
web $0.002 USDC

StructExtract

HTML → structured JSON. Tables, links, emails, phones, headings.

30d activity 1h ago
View →
web $0.001 USDC

CacheServe

Fetch a URL with server-side caching. Avoid redundant requests.

30d activity 13d ago
View →
safety $0.005 USDC

LinkRisk

Lightweight URL risk profile. Heuristic, fast, cheap.

30d activity 1d ago
View →
safety $0.010 USDC

LinkSafe

Definitive URL safety verdict. Playwright sandbox + VirusTotal.

30d activity 8h ago
View →
safety $0.002 USDC

PromptGuard

Score untrusted input for prompt injection risk.

30d activity 1h ago
View →
validate $0.001 USDC

SchemaGate

Validate LLM output against JSON Schema before passing downstream.

30d activity 13d ago
View →
convert $0.001 USDC

DocConvert-Text

Format conversion: md↔html, html↔txt, json↔csv.

30d activity 13d ago
View →
convert $0.005 USDC

DocConvert-PDF

HTML or markdown → PDF. Base64 output.

30d activity 1d ago
View →
notify $0.005 USDC

NotifyRelay /email

Send a transactional email from your agent. $0.005.

30d activity 1d ago
View →
notify $0.002 USDC

NotifyRelay /notify

Send a Telegram message from your agent. $0.002.

30d activity 1h ago
View →
notify $0.001 USDC

NotifyRelay /webhook

POST JSON to any public URL. Optional HMAC signing. $0.001.

30d activity 13d ago
View →
convert $0.490 USDC

PDF Render

High-fidelity URL or HTML → PDF via Playwright. $0.49.

30d activity no activity
View →
safety $0.002 USDC

ImageGuard

NSFW image classification. Score adult/explicit content before publishing.

30d activity 1h ago
View →
ai $0.001 USDC

MemoryServe

Agent memory store with semantic recall. Write memories, query by meaning.

30d activity 13d ago
View →
safety $0.001 USDC

MemScrub

Detect indirect prompt injection in RAG content before LLM injection.

30d activity 13d ago
View →
ai $0.0001 / 1k tokens USDC

EmbedPay

Vector embeddings for RAG pipelines. Pay per 1k tokens, no API key.

30d activity no activity
View →
ai $0.001 USDC

IntentFlow

Context handoff relay for multi-agent delegation. Async, returns retrieve_url.

30d activity 13d ago
View →
validate $0.002 USDC

xAudit

API response quality validation with cryptographic certificates.

30d activity 1h ago
View →
safety $0.005 USDC

KYA Oracle

Know-Your-Address: on-chain trust score for any Ethereum/Base wallet.

30d activity 1d ago
View →
safety $0.0005 / hop USDC

Loopwall

Recursive loop firewall + budget provenance for multi-agent chains.

30d activity 13d ago
View →
bundle $0.30 / brief USDC

Crypto-Tech Daily Brief

Daily x402 + crypto-AI ecosystem brief — 14 sources incl. 5 audit-verified melis services, professional synthesis, verifiable provenance

30d activity no activity
View →
bundle $0.50 / brief USDC

Polymarket Alpha

Daily prediction-market intelligence — odds shifts, smart-money tracking, news catalysts, powered by live melis bot infrastructure

30d activity no activity
View →
bundle $0.75 / weekly digest USDC

Competitor Intel

Weekly digest of what your competitors are doing — pricing, features, hiring, key tweets — with change-detection vs last week's snapshot

30d activity no activity
View →

Activity heatmaps show inbound USDC settlements per price tier over 30 days, sourced from on-chain data at build time. Multiple services share a tier — counts are not per-service.

Services that compose.

Three canonical workflows used in production by OpenClaw agents.

Safe research workflow

Screen input → scrape the page → clean for LLM → validate output schema.

PromptGuard ScrapePay MarkdownOpt SchemaGate
Typical cost: $0.018 per run
import { McpClient } from "@modelcontextprotocol/sdk/client";
// assuming x402-tools-mcp is configured in your MCP client

const guard = await client.callTool("promptguard", {
  prompt: userInput,
  sensitivity: "medium",
});
if (!guard.safe) throw new Error("Rejected: " + guard.risk);

const page = await client.callTool("scrapepay", {
  url: targetUrl, format: "html",
});

const md = await client.callTool("markdownopt", {
  html: page.content,
});

const check = await client.callTool("schemagate", {
  response: llmOutput,
  schema: expectedSchema,
});
if (!check.valid) throw new Error(check.hint);
Full workflow →

Notification pipeline

Scrape a page → extract structured data → send alert when condition is met.

ScrapePay StructExtract NotifyRelay
Typical cost: $0.014 per run
const page = await client.callTool("scrapepay", {
  url: "https://example.com/listings",
  format: "html",
});

const data = await client.callTool("structextract", {
  html: page.content,
  extract: ["tables", "links"],
});

if (data.tables[0].rows.length > previousCount) {
  await client.callTool("notifyrelay_telegram", {
    chat_id: CHAT_ID,
    message: `🆕 ${data.tables[0].rows.length} listings found`,
  });
}
Full workflow →

Document generation workflow

Fetch content → clean it → convert to PDF → deliver by email.

ScrapePay MarkdownOpt DocConvert-PDF NotifyRelay /email
Typical cost: $0.025 per run
const page = await client.callTool("scrapepay", {
  url: reportUrl, format: "html",
});

const md = await client.callTool("markdownopt", {
  html: page.content,
});

const pdf = await client.callTool("docconvert_pdf", {
  from: "md", to: "pdf", content: md.markdown,
});

await client.callTool("notifyrelay_email", {
  to: userEmail,
  subject: "Your report",
  body: "PDF attached: [base64]" + pdf.content,
});
Full workflow →

Transparent by default.

Settlement wallet 0x1C68…B3bC All 21 core x402 microservices
Molt Swarm wallet 0x61F2…AfFf5 PDF Render
Protocol x402 (Linux Foundation) Open spec. Google, AWS, Stripe, Visa, Mastercard co-signed.
Settlement chain Base (Coinbase L2) ~2 second finality. USDC only.
Fleet status 22 green / 0 red Last audited 2026-05-07
MCP package @melis-ai/x402-tools-mcp Open-source wrapper. MIT license.