warpweb-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@warpweb-mcpBuild a website for Oceanview Dental in Miami"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
warpweb-mcp
Official MCP server for the Warpweb API — research, build, and deploy AI-generated websites from any MCP-compatible client (Claude Desktop, Claude Code, Cline, Cursor, etc.).
You: "Build a website for Brookside Plumbing in Austin TX, contact owner@brooksideplumbing.com."
Claude: I'll use the warpweb create_site tool.
[tool call → siteId returned, build started]
Site queued. Real builds take 3-8 minutes. I'll poll status...
[tool call → get_site]
...complete. Live at https://brookside-plumbing-a1b2c3.warpweb.appOne POST → research → build → deploy. Warpweb pulls Google Places data (hours, photos, reviews, service area), writes vertical-matched copy, generates a design, builds a multi-page site, adds SEO (meta tags, sitemap, Schema.org JSON-LD), and deploys to a free *.warpweb.app subdomain. Best for service-based local businesses (trades, clinics, salons, agencies, restaurants, real estate).
Quickstart
1. Get an API key
Sign up at warpweb.ai, then issue a key at warpweb.ai/app. Keys look like wwk_.... You get 520 free credits on signup — enough for one solid build plus a few revisions, no card required.
2. Add to your MCP client
Claude Desktop — edit claude_desktop_config.json:
{
"mcpServers": {
"warpweb": {
"command": "npx",
"args": ["-y", "warpweb-mcp"],
"env": {
"WARPWEB_API_KEY": "wwk_your_key_here"
}
}
}
}Claude Code — add via the MCP UI or claude mcp add:
claude mcp add warpweb npx -y warpweb-mcp --env WARPWEB_API_KEY=wwk_your_key_hereCline / Cursor / others — same shape: command npx, args ["-y", "warpweb-mcp"], env WARPWEB_API_KEY. Any client that speaks MCP stdio works.
3. Restart your client and try a prompt
"Build a website for Acme Plumbing in Austin TX, contact owner@acmeplumbing.com.
Emphasize 24/7 emergency service."The client picks create_site from the tool list, fires the build, and polls until the deploy URL is live.
Related MCP server: Kleap
Tools exposed
Ten tools, mapping 1:1 onto the Warpweb V1 REST API. Full request/response shapes live in docs.warpweb.ai.
Businesses
search_businesses— disambiguate a business name against Google Places before building. Call this first whenever the user gives only a name ("Acme Plumbing"); going straight tocreate_sitewill silently pick the wrong match for common names. Returns up to 5 candidates withplaceId, address, phone, rating — pass the chosenplaceIdtocreate_sitefor an exact match. Free.
Sites
create_site— kick off an end-to-end build. ReturnssiteIdimmediately; real builds take 3–8 minutes. Pollget_siteor subscribe to thesite.completelifecycle webhook.get_site— fetch one site's current status. Use this to poll a build (every 2–5 seconds) whilestatusisgenerating.list_sites— list every site on the account.refresh_site— bump the inactivity timer on a free-subdomain site (auto-pauses after 7 days). Idempotent and free.
Revisions
create_revision— conversational edit of a deployed site. Send a plain-English prompt; Warpweb routes small surgical edits or full structural changes automatically. Async, returnsrevisionId.
Domains
check_domain— check availability + price for a candidate domain. Free, returns a few related suggestions.register_domain— buy a domain via Cloudflare Registrar and attach it to a site. Must callcheck_domainfirst; thepricefield must match the cents returned there.attach_domain— for customer-owned domains already registered elsewhere. Returns the CNAME target to set at their existing registrar.
Webhooks
configure_form_webhook— point form submissions on a site at your HTTP(S) endpoint. Each delivery is HMAC-SHA256 signed; the signing secret is returned once on first configure or rotate — capture it immediately.
The LLM gets the full input schema (required/optional fields, types, descriptions) at runtime via MCP — no need to memorize parameters.
Example prompts
"Build a website for [Business Name] in [City, State], owner email [email]."
"Check if
<domain>is available and what it would cost.""On site
<siteId>, change the headline to mention free estimates and add an FAQ about emergency service.""Attach the domain
acmeplumbing.comto site<siteId>— the customer already owns it at GoDaddy.""Configure form submissions on site
<siteId>to POST tohttps://my-crm.example.com/leads."
Pricing
520 credits free on signup (with email verification).
Credit packs, one-time Stripe Checkout:
Starter — $5 for 100 credits
Builder — $25 for 600 credits (16% bulk discount)
Pro — $100 for 2,800 credits (29% bulk discount)
Active Site subscription — $10/site/month, only on sites with a custom domain attached. Free-subdomain sites have no monthly cost.
Per-call directional credit costs:
Tool | Cost |
| ~200–500 credits (billed at end-of-build against actual AI usage) |
| ~20–100 credits |
| 5 credits |
| 50 credits + registrar pass-through |
| Free |
Troubleshooting
Check WARPWEB_API_KEY env var (401)
The key in your client config is missing, malformed, or revoked. Issue a fresh one at warpweb.ai/app. Keys start with wwk_.
Add credits at warpweb.ai/app/credits (402)
Account balance is 0 and auto-refill is off. Add credits or enable auto-refill on the dashboard.
Daily quota exceeded (429)
Per-day site / revision / domain limits exist to protect against runaway loops. The error message includes the quota object with used, limit, and resetDescription.
queue_full: true (429 on revisions)
Each site has a revision queue depth of 3 (1 running + 2 waiting). Wait for the current revision to land before queueing more.
Tool list is empty when client connects
WARPWEB_API_KEY isn't set in the client config's env block. The server starts in NO-TOOL mode so the connection still completes — set the env var and restart your client.
Want to test against staging?
Set WARPWEB_API_URL to point at a different base URL (default is https://api.warpweb.ai/v1).
When NOT to use Warpweb
Your business doesn't have a Google Places listing. Warpweb works, but the result reads more generic — research falls back to your
businessDescription. Calibrated for service-based local businesses (trades, clinics, salons, agencies, restaurants, real estate).You want hand-coded templates with pixel-perfect control. Warpweb generates layouts; it doesn't take a Figma spec as input. Use Next.js / Astro yourself for that.
You need a drag-and-drop builder UI. Warpweb is API-only.
Static personal sites that never change. Cloudflare Pages alone is cheaper.
Links
API reference: docs.warpweb.ai
Marketing + signup: warpweb.ai
API key management: warpweb.ai/app
Machine-readable reference (for LLM agents): warpweb.ai/llms-full.txt
License
MIT — see LICENSE.
Contributing
Issues + PRs welcome at github.com/northbeamsoftware/warpweb-mcp. New tools should map 1:1 onto public V1 endpoints; don't surface internal Warpweb concepts.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceEnables AI agents to create and manage owned-audience websites with posts, products, subscribers, domains, and analytics.Last updated165MIT
- AlicenseAqualityBmaintenanceEnables AI agents to build, edit, and publish live websites with hosting, database, auth, and domains via the Model Context Protocol.Last updated13191MIT

Buildez MCP Serverofficial
Alicense-qualityDmaintenanceEnables AI assistants to build complete, live websites from natural language descriptions by connecting to Buildez.ai.Last updated111MIT- Alicense-qualityDmaintenanceEnables AI agents to interact with Webflow APIs for managing sites, pages, components, CMS collections, and custom code.Last updated552MIT
Related MCP Connectors
AI agent website builder. Create and publish link-in-bio sites via MCP or REST API.
AI-powered design and management for Webflow Sites
Enable language models to perform advanced AI-powered web scraping with enterprise-grade reliabili…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/northbeamsoftware/warpweb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server