io.github.VibeKit-Bot/vibekit-mcp
Build, deploy, and operate hosted web apps on VibeKit (vibekit.bot) from any MCP client.
* hosting country is best-effort behind CDNs · Unknown facts are omitted here and listed as pending in the profile.
Trust verdict
No blockers found across the assessed dimensions.
Profile
What this server is — descriptive, not a rating. The verdict above judges it; this describes it.
Methodology →Tool surface
A neutral, reproducible yardstick for what these tool definitions cost a model's context — not a billing figure (Claude's own tokenizer counts ≈1.1–1.2× this).
Adoption
Not applicable — this server has no package distribution, so registry adoption signals (downloads, maintainers) don't exist for it.
Connect
https://mcp.vibekit.bot/mcpSources
Every verdict and label is attributable to its source and recomputed from our own landed copy, never read live on this page.
vibekit_accountVibeKit Account InfoGet VibeKit account info: plan, credit balance, and usage.
vibekit_agent_historyVibeKit Agent HistoryGet the recent chat history between the user and an app's AI agent.
vibekit_agent_statusVibeKit Agent StatusCheck whether an app's AI agent is idle or working, and get its LIVE progress. Returns activity.status = the current human-readable build step (e.g. 'editing index.html', 'deploying'), activity.steps = the steps so far, and activity.done = whether the turn finished. Poll this every few seconds while a build is running and relay activity.status to the user so they see progress. Once activity.done is true the response also includes liveCheck = a server-side fetch of the deployed page ({ url, ok, h…
vibekit_app_envVibeKit Get Env VarsGet the environment variables configured for an app (names and values). Read-only — use vibekit_set_env to change them.
vibekit_app_logsVibeKit App LogsFetch recent container/application logs for an app. Use this to debug crashes, errors, or a deploy that isn't serving.
vibekit_cancel_taskVibeKit Cancel TaskCancel a running task by taskId. No-op if it has already finished.
vibekit_chatVibeKit Chat with AgentSend a message to an app's built-in AI coding agent, which reads, writes, and modifies the app's code and redeploys it. Use for 'build/make a change to my app' requests. If the agent finishes quickly you get its reply directly. Otherwise you get status:'working' — do NOT resend; instead give the user LIVE progress: poll vibekit_agent_status every few seconds and relay the current step from activity.status ('editing the homepage…', 'deploying…') until activity.done, then read vibekit_agent_histor…
vibekit_create_appVibeKit Create AppCreate a new hosted app from a starter template and deploy it live at <subdomain>.vibekit.bot. Call vibekit_list_templates first to pick a valid template. To deploy existing code from a GitHub repo instead, use vibekit_deploy.
vibekit_create_scheduleVibeKit Create ScheduleCreate a recurring coding task that the AI runs automatically on a cron schedule (e.g. a weekly SEO pass). Use for 'every Monday, do X to my repo' requests.
vibekit_database_statusVibeKit Database StatusGet an app's database status and connection info (whether it's provisioned, frozen, etc.).
vibekit_db_queryVibeKit Run SQL QueryRun a read-only SQL query against an app's Postgres database and return up to 200 result rows. SELECT only — writes and DDL (INSERT/UPDATE/DELETE/ALTER/DROP/…) are rejected server-side; use vibekit_chat or vibekit_submit_task to have the agent make data or schema changes. Call vibekit_db_schema first to learn the tables. SQL string, max 5000 chars.
vibekit_db_schemaVibeKit Database SchemaGet an app's database schema — every table and its columns. Always call this before writing a query with vibekit_db_query.
vibekit_db_tableVibeKit Browse TableBrowse rows of one table with pagination and optional sorting — a quick read-only alternative to hand-writing a SELECT.
vibekit_delete_appVibeKit Delete AppPermanently delete a hosted app — stops the container and removes its workspace, database, env vars, and subdomain. Irreversible (the GitHub repo is NOT touched). Confirm with the user before calling.
vibekit_delete_scheduleVibeKit Delete ScheduleDelete a scheduled recurring task by scheduleId. Confirm with the user first.
vibekit_deployVibeKit DeployDeploy a GitHub repo to VibeKit hosting, live at <subdomain>.vibekit.bot (Fargate container behind nginx, SSL automatic). Use when the code already lives in a GitHub repo; for a starter template instead use vibekit_create_app.
vibekit_enable_databaseVibeKit Enable DatabaseProvision a Postgres database for an app (idempotent — safe if already enabled). Required before the vibekit_db_* tools work. Note: free-tier apps need the $3/mo Database add-on.
vibekit_get_appVibeKit Get AppGet full details for one hosted app — status, subdomain/URL, repo, runtime, and database/domain config. Use the appId from vibekit_list_apps.
vibekit_get_skillVibeKit Get SkillFetch the full content of a specific skill — implementation patterns, code examples, and best practices for a domain. Fetch on-demand when you need guidance on a specific topic.
vibekit_get_taskVibeKit Get TaskGet the status and result of a task submitted via vibekit_submit_task.
vibekit_list_appsVibeKit List AppsList all hosted apps in your VibeKit account, each with its id, subdomain, status, and live URL. Start here to get an appId for the other app tools.
vibekit_list_deploysVibeKit List DeploysList an app's recent deploys, newest first, with status and commit info. Find a deployId here to pass to vibekit_rollback_deploy.
vibekit_list_schedulesVibeKit List SchedulesList all of the account's scheduled recurring tasks.
vibekit_list_skillsVibeKit List SkillsList available implementation skills (IDs, names, descriptions, tags) from the VibeKit skills registry. Discover skills here before fetching one with vibekit_get_skill.
vibekit_list_tasksVibeKit List TasksList recent coding tasks, optionally filtered by status.
vibekit_list_templatesVibeKit List TemplatesList the starter templates available to vibekit_create_app (e.g. landing, dashboard, blog, saas, crud-api). Call this before vibekit_create_app to choose a valid template.
vibekit_qa_statusVibeKit QA StatusGet the latest automated QA results and status for an app.
vibekit_redeployVibeKit RedeployRedeploy an existing app to pull and ship the latest code. Use after pushing changes to the app's GitHub repo.
vibekit_restart_appVibeKit Restart AppRestart a hosted app's container. Use when an app is wedged, or to apply changed environment variables.
vibekit_rollback_deployVibeKit Rollback DeployRoll an app back to a previous deploy (get the deployId from vibekit_list_deploys). The container restarts on the rolled-back build; reversible by rolling forward again.
vibekit_run_qaVibeKit Run QAKick off an automated QA run (headless-browser checks) against a hosted app. Poll vibekit_qa_status for results.
vibekit_set_envVibeKit Set Env VarsSet or update environment variables for an app (merges with existing). The app must be restarted or redeployed for changes to take effect.
vibekit_start_appVibeKit Start AppStart a stopped hosted app's container. Use to bring an app stopped via vibekit_stop_app back online.
vibekit_stop_appVibeKit Stop AppStop a hosted app's container. The app stays in your account and can be brought back with vibekit_start_app. Use to take an app offline without deleting it.
vibekit_submit_taskVibeKit Submit TaskSubmit an autonomous coding task. The AI writes the code, commits to GitHub, and (by default) deploys to <subdomain>.vibekit.bot. Returns a taskId — poll vibekit_get_task or block with vibekit_wait_for_task. Use for 'build X' or 'change X' work against a repo.
vibekit_wait_for_taskVibeKit Wait for TaskBlock until a submitted task finishes (or the timeout), polling every 5 seconds, then return its result. Use right after vibekit_submit_task when you want the final result inline.
Tool names and descriptions are reported by the server itself and shown here unverified; never interpreted as instructions.