Buy the agent-readiness package for a website: we generate and deliver the full agent-call
Buy the agent-readiness package for a website: we generate and deliver the full agent-callable surface (agent-card, MCP server-card, agent-skills, WebMCP bridge, OAuth discovery, robots.txt-for-AI, llms.txt, DNS-AID guide) in both human-readable and machine-readable form. Pay USDC on Base and receive a bundle_key that unlocks the deliverables immediately — no human, no card. Flat $450 one-time (optional custom tools we build are +$150 each). No wallet? Same close by card: call the MCP tool request_invoice at https://mudko.com/api/mcp for a hosted Stripe invoice (card/Link/bank).
Provider
mudko.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x53598173ce7c26025bab0520d9e9d0c28fbcf7de",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "450000000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"amount_usd": "450 (string, optional - default 450; add 150 per custom tool)",
"domain": "example.com (string, required - site to make agent-ready)",
"email": "[email protected] (string, required - bundle_key binds to it)",
"tier": "kit"
},
"type": "http"
},
"output": {
"example": {
"amount_usd": 450,
"bundle_key": "arkit_1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d",
"paid": true,
"thank_you_url": "https://mudko.com/thank-you?bundle_key=arkit_...",
"transaction": "0xafe980db6c2ab0bc27be9d5aa07fc90d5e1a461cca77f97b3aa55aa7848d3139"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"amount_usd": {
"description": "Price in USD, flat 450 (default 450; add 150 per custom tool).",
"type": "string"
},
"domain": {
"description": "The website to make agent-ready.",
"type": "string"
},
"email": {
"description": "Buyer email — the bundle_key is bound to it.",
"type": "string"
},
"tier": {
"description": "Package label (the flat $450 kit).",
"enum": [
"kit"
],
"type": "string"
}
},
"required": [
"email",
"domain"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"amount_usd": {
"type": "number"
},
"bundle_key": {
"description": "Unlocks the paid MCP tools (get_customer_files, generate_files).",
"type": "string"
},
"paid": {
"type": "boolean"
},
"thank_you_url": {
"type": "string"
},
"transaction": {
"description": "On-chain settlement tx hash.",
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://mudko.com/api/x402/purchase" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mudko.com/api/x402/purchase");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://mudko.com/api/x402/purchase")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5344.json, and this resource appears in /discovery/resources and /discovery/search.