Build full-stack web applications from any AI assistant.
Give Claude, Cursor, Windsurf, or VS Code Copilot the ability to generate, edit, and deploy production-ready web applications — powered by VULK.
This MCP server connects AI coding assistants to VULK's app builder. When you say "build me a project management dashboard", it doesn't just return a template — it triggers VULK's full AI generation pipeline:
- 16 AI models (Claude, GPT-4o, Gemini, DeepSeek, and more)
- Real-time generation with file streaming
- Full-stack output (React + Tailwind + routing + API + database schemas)
- Live preview at
webapp.vulk.dev - One-command deploy to Cloudflare Pages
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"vulk": {
"command": "npx",
"args": ["-y", "@vulk/mcp-server"],
"env": {
"VULK_API_KEY": "vk_sk_your_key_here"
}
}
}
}Settings → MCP Servers → Add:
{
"vulk": {
"command": "npx",
"args": ["-y", "@vulk/mcp-server"],
"env": {
"VULK_API_KEY": "vk_sk_your_key_here"
}
}
}Create .vscode/mcp.json:
{
"servers": {
"vulk": {
"command": "npx",
"args": ["-y", "@vulk/mcp-server"],
"env": {
"VULK_API_KEY": "vk_sk_your_key_here"
}
}
}
}Add to MCP settings:
{
"vulk": {
"command": "npx",
"args": ["-y", "@vulk/mcp-server"],
"env": {
"VULK_API_KEY": "vk_sk_your_key_here"
}
}
}- Go to vulk.dev/settings/api-keys
- Click Create API Key
- Copy the key (starts with
vk_sk_)
Free accounts get 3 generations/month. Upgrade for more.
"Build a modern SaaS dashboard with user auth, analytics charts, team management, and dark mode"
Creates a project, triggers AI generation, and returns all generated files with preview URL. Generation runs through VULK's full pipeline — intent analysis, code generation, auto-fixing, and browser verification.
"Add a settings page with tabs for Profile, Billing, and Notifications"
Sends your instruction to VULK's AI with full context of the existing project files. The AI decides which files to create or modify.
Returns all your VULK projects with IDs, prompts, dates, and deployment URLs.
Get status, metadata, and URLs for a specific project.
Download every file from a project — paths, content, language detection.
Deploy to Cloudflare Pages and get a live production URL. Requires an active subscription.
See which AI models are available on your plan and their capabilities.
View API request counts, credits remaining, and rate limit status.
Get a link to upgrade. Plans from $19/mo (100 generations) to $249/mo (unlimited).
| Variable | Required | Default | Description |
|---|---|---|---|
VULK_API_KEY |
Yes | — | Your VULK API key (vk_sk_...) |
VULK_API_BASE |
No | https://vulk.dev |
API base URL |
You → "Build me a task manager"
↓
MCP Server → POST /api/v1/projects (create record)
↓
MCP Server → POST /api/agent/stream (trigger AI generation)
↓
VULK Agent → Intent analysis → Code generation → Auto-fix → Verify
↓
MCP Server ← SSE stream (file_start, file_delta, file_complete events)
↓
You ← { files: [...], previewUrl, editorUrl }
The generation pipeline includes:
- Intent analysis — understands what kind of app you want
- ReAct loop — AI plans and generates files iteratively
- Auto-fixer — deterministic fixes for common issues
- Browser verification — renders the app and fixes errors
- Quality scoring — ensures the output meets standards
| Plan | Price | Credits/month | Models | Best For |
|---|---|---|---|---|
| Free | $0 | 3 generations | Basic | Trying it out |
| Builder | $19.99/mo | 1,000 | Basic (Haiku, Flash, Mini) | Getting started |
| Pro | $39.99/mo | 2,500 | All 16+ models | Power users |
| Team | $79.99/mo | 5,000 | All models + collaboration | Small teams |
| Max | $199/mo | 10,000 | All + white-label + BYOM | Agencies |
| Business | $299/mo | 20,000 | Everything + SSO + SLA | Organizations |
Credits are token-based — simple apps use ~100 credits, complex ones ~500+. Full pricing details.
git clone https://github.com/devjoaocastro/vulk-mcp-server.git
cd vulk-mcp-server
npm install
npm run build
VULK_API_KEY=vk_sk_... node dist/index.js- VULK — AI app builder
- API Keys — Get your key
- Pricing — Plans and pricing
- Documentation — Full docs
- Status — API health
MIT