VibeKit MCP
vibekit-mcp
MCP server for VibeKit, deploy apps, manage hosting, and chat with AI agents from any MCP client.
This package is for VibeKit cloud/API access. It does not connect your local Claude Code instance to Telegram. For local-machine remote control, use vibekit-agent.
Use it remotely (no install)
VibeKit also runs as a hosted remote server, so clients that accept a remote MCP URL (claude.ai web connectors, ChatGPT, etc.) need no install:
https://mcp.vibekit.bot/mcp?api_key=vk_your_api_key_herePaste that URL into your client's "custom connector" / "remote MCP server" field. Clients that let you set headers can instead send Authorization: Bearer vk_your_api_key_here and use the bare https://mcp.vibekit.bot/mcp. See Get an API key below.
Prefer a local stdio install (e.g. Claude Desktop)? Use the steps below.
Get an API key
Keys start with vk_. Two ways to get one:
Instant, no signup: one request returns a key.
curl -X POST https://vibekit.bot/api/v1/auth/register # Response: {"apiKey": "vk_...", "plan": "free", "credits": 0}Save the returned key and reuse it. Each call to
/auth/registercreates a brand-new account, so call it once, not per request.From your account: if you already use VibeKit, copy or regenerate your key in the web dashboard or the iOS app settings.
Installation
npm install -g vibekit-mcpSetup
Get a VibeKit API key (see Get an API key above).
Add to your MCP client config (e.g. Claude Desktop) (
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS):
{
"mcpServers": {
"vibekit": {
"command": "vibekit-mcp",
"env": {
"VIBEKIT_API_KEY": "vk_your_api_key_here"
}
}
}
}Restart your MCP client
Available Tools
Hosting
Tool | Description |
| List all hosted apps |
| Get details about a specific app |
| List starter templates for |
| Create new app from a template |
| Deploy GitHub repo to hosting |
| Redeploy app with latest code |
| List an app's recent deploys with status and commit |
| Roll an app back to a previous deploy |
| Get application logs |
| Restart an app |
| Stop an app |
| Start a stopped app |
| Get app environment variables |
| Set app environment variables |
| Delete an app permanently |
Agent
Tool | Description |
| Chat with an app's AI agent |
| Get agent status |
| Get chat history with agent |
Database
Tool | Description |
| Enable a Postgres database for an app |
| Get database status and connection info |
| Get the database schema (every table and its columns) |
| Run a read-only SQL query (SELECT only, up to 200 rows) |
| Browse one table's rows with pagination and sorting |
QA
Tool | Description |
| Run automated QA tests |
| Get QA test results |
Tasks
Tool | Description |
| Submit a coding task |
| Get task status/result |
| List recent tasks |
| Wait for task completion |
| Cancel a running task |
| Create recurring scheduled task |
| List scheduled tasks |
| Delete scheduled task |
Account
Tool | Description |
| Get account info (plan, credits, usage) |
| List implementation skills |
| Fetch specific skill content |
Example Usage
Once configured, you can use prompts like:
"Deploy my GitHub repo to VibeKit and create a new app"
"Chat with the AI agent for my app about adding a contact form"
"Show me the logs for my app and restart it if there are errors"
"Enable a database for my app, then show me its schema and query the users table"
"List my app's recent deploys and roll back to the last working one"
"Run QA tests on my deployed app"
"Check my VibeKit account balance and list my apps"
"Create a weekly schedule to improve my app's performance"
Environment Variables
Variable | Description | Default |
| Your VibeKit API key (required) | none |
| API base URL |
|
Related Packages
vibekit-cli: terminal client for VibeKit cloud workflowsvibekit-agent: Telegram bridge for local Claude Code on your own machine
Links
Dashboard (view or regenerate your API key)
Privacy Policy
VibeKit's privacy policy: https://vibekit.bot/privacy
What this MCP server does with your data, concretely:
Every tool call is forwarded to the VibeKit API (
https://vibekit.bot/api/v1) over HTTPS, authenticated with the API key you configure. Tool inputs and outputs are processed by VibeKit to run your apps and agents, under the privacy policy above.The server itself keeps no state: nothing is written to disk, no analytics or telemetry are collected by this package, and your API key is read from configuration (
VIBEKIT_API_KEY/ the extension's key field) and sent only tovibekit.bot.Data retention, third-party sharing, and deletion are governed by the policy above. Questions: support@vibekit.bot.
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/VibeKit-Bot/vibekit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server