loading…
Search for a command to run...
loading…
Enables AI assistants to generate, edit, and deploy production-ready full-stack applications through VULK's automated development pipeline. It supports multi-fi
Enables AI assistants to generate, edit, and deploy production-ready full-stack applications through VULK's automated development pipeline. It supports multi-file code generation, browser verification, and exports to web, PWA, and mobile platforms.
Build, deploy, and export full-stack applications from any AI assistant.
Give Claude, Cursor, Windsurf, VS Code Copilot, or Gemini CLI the ability to generate, edit, deploy, and export production-ready applications — powered by VULK.
This MCP server connects AI coding assistants to VULK's full application platform. Say "build me a project management dashboard" and it triggers real AI generation — not templates, not scaffolding, but a complete application.
Generation
Export & Deploy
Platform
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"
}
}
}
Install the extension directly from GitHub:
gemini extensions install VULK-dev/vulk-mcp-server
Then set your API key:
export VULK_API_KEY="vk_sk_your_key_here"
Or configure it in the extension settings when prompted. The extension uses the same MCP server under the hood, giving you access to all VULK tools (generate, edit, deploy, etc.) directly from Gemini CLI.
vk_sk_)Free accounts get 3 generations/month. Upgrade for more.
generate — Build a new app"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 a live preview URL. Generation runs through VULK's full pipeline — intent analysis, multi-file code generation, auto-fixing, browser verification, and quality scoring.
edit — Modify an existing project"Add a settings page with tabs for Profile, Billing, and Notifications"
Sends your instruction to VULK's AI with full context of all existing project files. The AI decides which files to create or modify.
list — See your projectsReturns all your VULK projects with IDs, prompts, dates, and deployment URLs.
get — Project detailsGet status, metadata, and URLs for a specific project.
files — Read source codeDownload every file from a project — paths, content, language detection.
deploy — Ship to productionDeploy to Cloudflare Pages and get a live production URL with custom domain support.
models — Available LLM modelsList all available models on your plan — Claude Opus 4.6, Sonnet 4.6, GPT-5.4, Gemini 3.1 Pro, DeepSeek V3, Grok 4, and more.
usage — Check your limitsView API request counts, credits remaining, and rate limit status.
subscribe — Upgrade your planGet a checkout link to upgrade. Plans from $19.99/mo to $299/mo.
| 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 → Browser verify
↓
MCP Server ← SSE stream (file_start, file_delta, file_complete events)
↓
You ← { files: [...], previewUrl, editorUrl }
The generation pipeline includes:
| Plan | Price | Credits/month | LLM 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 + team collaboration | Small teams |
| Max | $199/mo | 10,000 | All + BYOM + white-label | 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/vulkdev/vulk-mcp-server.git
cd vulk-mcp-server
npm install
npm run build
VULK_API_KEY=vk_sk_... node dist/index.js
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"vulk-mcp-server": {
"command": "npx",
"args": []
}
}
}