
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.
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()) }]
};
}
});Every site Auto WebMCP has analysed, newest first. Target URLs only, no scan contents.
Works with your existing edge stack
Auto WebMCP scans your homepage, forms, CTAs and journeys to infer agent-callable tools.
Every tool ships with a JSON Schema, safety class, confidence score, and example agent prompt.
Copy one prompt into Codex, Claude Code, Lovable, v0, or Cursor and it wires the tools into your codebase.
Auto-detects your CDN or host, then gives step-by-step dashboard instructions for Cloudflare, Akamai, Netlify, or Vercel.