Template Vault is an AI-native website builder. Connect it once and your AI can generate a complete one-page website from a business brief in under a minute — real running URL, real Vercel deployment, custom domain on Pro+ tier.
Six tools: `discover_business_needs` (interview the user before generating), `list_personalities`, `generate_site`, `get_generation_status`, `list_user_sites`, `publish_site`. Quotas tied to the user's Template Vault plan, so MCP calls don't bypass billing.
The discovery-first workflow is the unusual bit — most MCP servers expose CRUD tools; ours expose a guided pipeline that makes the AI a better website-builder than a one-shot prompt would.
Auth: OAuth 2.1 with PKCE. Works in claude.ai's "Add custom connector" flow with no manual client registration — paste the URL, click Allow, done.
Server Config
{
"mcpServers": {
"template-vault": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://www.the-template-vault.com/api/mcp"
]
}
}
}