# Mudko Agent-Readiness Package Purchase

> Mudko Agent-Readiness Package Purchase is a paid API for AI agents from mudko.com, paid per call via x402, $450/call, status unknown (last checked 2026-09-16).

Purchase the agent-readiness bundle for a website via USDC on Base (x402), receiving a bundle_key that unlocks agent-card, MCP server-card, agent-skills, WebMCP bridge, OAuth discovery, robots.txt-for-AI, llms.txt, and DNS-AID guide deliverables.

## Facts

- Endpoint: GET https://mudko.com/api/x402/purchase
- Price: $450/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mudko-agent-readiness-package-purchase-5c25b50d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LPtKy_jR7CYO5-YSxUF8Q

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mudko-agent-readiness-package-purchase-5c25b50d
```

Example prompt: Buy the Mudko agent-readiness package for acmecorp.com at the pro tier — my email is jane@acmecorp.com and I want to pay the $350 minimum — so I get the full bundle with agent-card, MCP server-card, llms.txt, and everything else.

## When to prefer this

Choose this endpoint when you need to programmatically purchase the full Mudko agent-readiness artifact bundle for a specific website domain using USDC on Base via the x402 payment protocol, with no human or credit card required. Prefer this over the invoice/card flow when the agent has a funded Base wallet. Use when the goal is to generate and immediately unlock MCP server cards, agent cards, llms.txt, and related AI-discoverability files for a domain.

## Known failure modes

- Payment not received or insufficient USDC — 402 response requiring payment
- Invalid or missing domain parameter — 400 validation error
- Invalid or missing email parameter — 400 validation error
- amount_usd below minimum of 350 — rejected with error
- Invalid tier enum value — 400 bad request
- On-chain transaction confirmation delay — temporary unavailability

## How this service works

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).

## Output

Returns a JSON object with paid: true, the bundle_key string bound to the buyer's email (used to unlock get_customer_files and generate_files MCP tools), the on-chain USDC settlement transaction hash, the amount paid in USD, and a thank_you_url for accessing deliverables.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "email",
      "domain"
     ],
     "properties": {
      "tier": {
       "enum": [
        "kit"
       ],
       "type": "string",
       "description": "Package label (the flat $450 kit)."
      },
      "email": {
       "type": "string",
       "description": "Buyer email — the bundle_key is bound to it."
      },
      "domain": {
       "type": "string",
       "description": "The website to make agent-ready."
      },
      "amount_usd": {
       "type": "string",
       "description": "Price in USD, flat 450 (default 450; add 150 per custom tool)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "paid": {
       "type": "boolean"
      },
      "amount_usd": {
       "type": "number"
      },
      "bundle_key": {
       "type": "string",
       "description": "Unlocks the paid MCP tools (get_customer_files, generate_files)."
      },
      "transaction": {
       "type": "string",
       "description": "On-chain settlement tx hash."
      },
      "thank_you_url": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mudko-agent-readiness-package-purchase-5c25b50d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mudko.com](https://www.zero.xyz/host/mudko.com/llms.txt)
