vibekit-mcp
v0.2.0
Published
MCP server for VibeKit — use AI coding tasks as native tools in Claude Desktop, Cursor, etc.
Maintainers
Readme
vibekit-mcp
MCP (Model Context Protocol) server for VibeKit — use AI coding tasks as native tools in Claude Desktop, Cursor, and other MCP-compatible clients.
Installation
npm install -g vibekit-mcpSetup
Get a VibeKit API key:
- Open @the_vibe_kit_bot in Telegram
- Send
/apikeyto generate your key
Add to your Claude Desktop config (
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS):
{
"mcpServers": {
"vibekit": {
"command": "vibekit-mcp",
"env": {
"VIBEKIT_API_KEY": "vk_your_api_key_here"
}
}
}
}- Restart Claude Desktop
Available Tools
| Tool | Description |
|------|-------------|
| vibekit_submit_task | Submit a coding task. AI writes code, commits to GitHub, deploys to Vercel. |
| vibekit_get_task | Get status/result of a task |
| vibekit_list_tasks | List recent tasks |
| vibekit_wait_for_task | Wait for a task to complete (polls until done) |
| vibekit_create_schedule | Create a recurring scheduled task |
| vibekit_list_schedules | List all scheduled tasks |
| vibekit_delete_schedule | Delete a scheduled task |
| vibekit_account | Get account info (plan, credits, usage) |
Example Usage
Once configured, you can ask Claude things like:
- "Use VibeKit to build me a landing page for my startup"
- "Submit a task to VibeKit: Add a contact form to my website"
- "Check my VibeKit account balance"
- "Create a weekly schedule to improve SEO on my repo"
Environment Variables
| Variable | Description | Default |
|----------|-------------|---------|
| VIBEKIT_API_KEY | Your VibeKit API key (required) | — |
| VIBEKIT_API_URL | API base URL | https://vibekit.bot/api/v1 |
