Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables no-code creation, preview, deployment, and monetization of MCP servers via x402 micropayments, including a virtual file system, sandbox preview, and tool monetization.

README.md

MCPay Build

<img src="./assets/mcpay-hero-painting.png" alt="MCPay Build Banner" width="600">

MCPay Build is an MCP server that acts as a no-code builder for MCP Servers with built-in monetization. It lets developers design, preview, and deploy MCP servers to GitHub + Vercel — and instantly monetize tool usage with x402 micropayments via MCPay.

👉 Build → Preview → Deploy → Monetize

Our vision is an agent-to-agent economy powered by microtransactions, where AI agents can autonomously pay to use tools. MCPay Build provides the rails to make that future possible.

---

🖼️ Workflow


┌───────────┐      ┌───────────┐      ┌───────────┐      ┌───────────────┐
│   Build   │ ───▶ │  Preview  │ ───▶ │  Deploy   │ ───▶ │   Monetize    │
│ (AI/MCP)  │      │ (sandbox) │      │ (Vercel)  │      │ (MCPay/x402)  │
└───────────┘      └───────────┘      └───────────┘      └───────────────┘

---

Big Picture

This repo implements an MCP server “factory”:

  • Lets an AI/chat (or you) spin up a brand-new MCP server in memory.
  • Provides tools to edit files, manage deps, run type checks, format, version, and preview live.
  • Deploys your server into a real Node.js environment using Vercel Sandbox.
  • Monetizes expensive operations (preview, run_command, stream_logs, etc.) using MCPay (per-call x402 micropayments).

Flow: Create session → edit files → preview in sandbox → get live URL → iterate → export as ZIP → monetize tools.

---

✨ Features

  • MCPay integration → free + paid tools side-by-side, billed automatically
  • Simple APIserver.tool(...) & server.paidTool(...) via mcpay/handler
  • Vercel-readyvercel.json + function exports (GET/POST/OPTIONS)
  • Type-safe → modern TypeScript + Zod validation
  • Dev UX → session/file/diff/format tools, ts-check, logs, live preview

---

🚀 Quickstart

1. Install dependencies

pnpm install

2. Configure environment

MCPAY_API_KEY=your_api_key     # required for paid tools
MCPAY_API_URL=https://api.mcpay.tech  # optional

3. Run locally

pnpm dlx vercel dev

Server runs at http://localhost:3000.

4. Connect from MCP client

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "mcpay-local": { "url": "http://localhost:3000" }
  }
}

---

Under the Hood

Main runtime & routing

  • Hono as the HTTP framework.
  • Open CORS (all origins/headers/methods allowed).
  • GET / → serves a system prompt describing tools + philosophy.
  • All other routes → handled by createPaidMcpHandler(...).
  • Function exports (GET/POST/OPTIONS) → deploys cleanly to Vercel.

---

State & storage

  • Sessions in Vercel KV (session:{id}) with virtual file system + sandbox metadata.
  • Commits in KV (commit:{session}:{commit}) for full snapshots.
  • Logs/ZIPs uploaded to Vercel Blob with public URLs.

---

Templates & defaults

When you run create_session, it seeds:

  • index.ts — MCP server template (with hello + get-time tools).
  • package.json, tsconfig.json, .gitignore, .env.example, README.md.

---

Preview = live sandbox

preview tool does:

  1. Loads session + hashes files.
  2. Reuses existing sandbox if files unchanged (<30 min).
  3. Else:
  • Creates fresh Vercel Sandbox (Node 22, 2 vCPUs).
  • Uploads files.
  • Detects Node/npm versions.
  • Installs deps (npm/yarn/pnpm).
  • Runs build if available.
  • Starts server (npm start or fallback).
  • Health-checks endpoints until ready.
  • Aggregates logs (uploads long logs to Blob).

Returns: sandbox ID, preview URL, logs, node/npm versions, status.

---

Built-in Tools

Paid (metered via MCPay)

  • create_session — bootstrap project
  • preview — deploy to sandbox, return live URL
  • download_session — zip + upload project
  • run_command — exec arbitrary shell in sandbox
  • stream_logs — live-tail logs

Free

  • File ops: add_or_update_file, delete_file, get_file, list_files, get_all_codebase
  • Env ops: add_env_key, list_env_keys, delete_env_key
  • Package ops: add_dependency, debug_package_json
  • Quality: ts_check, npm_audit, format_file
  • Versioning: commit, diff, revert, get_logs
  • Info: get_environment_info, get_session_stats, stop_preview, force_refresh_sandbox

---

Monetization

  • MCP handler is created with createPaidMcpHandler.
  • Paid tools have explicit { price, currency }.
  • Requires MCPAY_API_KEY (and optional MCPAY_API_URL).

Example:

server.paidTool(
  "analyze-data",
  "Analyze data (paid)",
  { price: 0.1, currency: "USD" },
  { data: z.string(), format: z.enum(["json","csv"]) },
  async ({ data, format }) => ({
    content: [{ type: "text", text: `Analyzed ${format} data` }]
  })
);

---

🛠 Typical Flow

  1. create_session → new ID
  2. add_or_update_file → edit index.ts
  3. ts_check + format_file
  4. commit → snapshot
  5. preview → live sandbox URL
  6. stream_logs → monitor in real time
  7. download_session → zip/export

---

📦 Deployment

Deploy to Vercel:

pnpm dlx vercel

Set env vars in project settings:

  • MCPAY_API_KEY
  • MCPAY_API_URL (optional)

---

❗ Notes

  • Blob uploads are public → don’t commit secrets.
  • Sandbox per tool (for some ops) → isolation at cost of speed/\$\$.
  • .env handling → only keys are tracked; actual secrets must be set in runtime env.

---

📄 License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.