Auto WebMCPbySatsuma.ai
Make your website agent-ready in 60 seconds

Turn any website into an agent-ready website.

Paste a URL. Auto WebMCP scans your site, generates real document.modelContext tools, then hands the whole thing to your coding agent (Codex, Claude Code, Lovable, v0, Cursor) or gives you exact steps for your CDN dashboard.

Try:
https://your-site.com
search_restaurantssafe
search · agent-callable
get_store_menusafe
content · agent-callable
add_items_to_cartsafe
transaction · agent-callable
place_delivery_ordersafe
transaction · agent-callable
webmcp.ts
document.modelContext.registerTool({
  name: "place_delivery_order",
  description: "Place the current cart as a delivery order",
  inputSchema: {
    type: "object",
    properties: {
      cart_id: { type: "string" },
      address: { type: "string" },
      tip: { type: "number" }
    },
    required: ["cart_id", "address"]
  },
  annotations: { readOnlyHint: false },
  execute: async (input) => {
    const res = await fetch("/api/v1/orders", {
      method: "POST",
      headers: { "content-type": "application/json" },
      body: JSON.stringify(input),
      credentials: "same-origin"
    });
    return {
      content: [{ type: "text",
        text: JSON.stringify(await res.json()) }]
    };
  }
});

Works with your existing edge stack

Cloudflare Workers
Akamai EdgeWorkers
Netlify Edge Functions
Vercel / Next.js

LLM-inferred actions

Auto WebMCP scans your homepage, forms, CTAs and journeys to infer agent-callable tools.

Structured tools

Every tool ships with a JSON Schema, safety class, confidence score, and example agent prompt.

Hand it to your coding agent

Copy one prompt into Codex, Claude Code, Lovable, v0, or Cursor and it wires the tools into your codebase.

Or ship it at the edge

Auto-detects your CDN or host, then gives step-by-step dashboard instructions for Cloudflare, Akamai, Netlify, or Vercel.