npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vibekit-mcp

v0.8.0

Published

MCP server for VibeKit — deploy apps, manage hosting, chat with AI agents, and run coding tasks from Claude Desktop, Cursor, and other MCP clients.

Readme

vibekit-mcp

smithery badge

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_here

Paste 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. Get a key from @the_vibe_kit_bot with /apikey.

Prefer a local stdio install (e.g. Claude Desktop)? Use the steps below.

Installation

npm install -g vibekit-mcp

Setup

  1. Get a VibeKit API key:

  2. Add to your MCP client config (e.g. Claude Desktop) (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "vibekit": {
      "command": "vibekit-mcp",
      "env": {
        "VIBEKIT_API_KEY": "vk_your_api_key_here"
      }
    }
  }
}
  1. Restart your MCP client

Available Tools

Hosting

| Tool | Description | |------|-------------| | vibekit_list_apps | List all hosted apps | | vibekit_get_app | Get details about a specific app | | vibekit_create_app | Create new app from template | | vibekit_deploy | Deploy GitHub repo to hosting | | vibekit_redeploy | Redeploy app with latest code | | vibekit_app_logs | Get application logs | | vibekit_restart_app | Restart an app | | vibekit_stop_app | Stop an app | | vibekit_start_app | Start a stopped app | | vibekit_app_env | Get app environment variables | | vibekit_set_env | Set app environment variables | | vibekit_delete_app | Delete an app permanently |

Agent

| Tool | Description | |------|-------------| | vibekit_chat | Chat with an app's AI agent | | vibekit_agent_status | Get agent status | | vibekit_agent_history | Get chat history with agent |

Database

| Tool | Description | |------|-------------| | vibekit_enable_database | Enable database for an app | | vibekit_database_status | Get database status and connection info |

QA

| Tool | Description | |------|-------------| | vibekit_run_qa | Run automated QA tests | | vibekit_qa_status | Get QA test results |

Tasks

| Tool | Description | |------|-------------| | vibekit_submit_task | Submit a coding task | | vibekit_get_task | Get task status/result | | vibekit_list_tasks | List recent tasks | | vibekit_wait_for_task | Wait for task completion | | vibekit_create_schedule | Create recurring scheduled task | | vibekit_list_schedules | List scheduled tasks | | vibekit_delete_schedule | Delete scheduled task |

Account

| Tool | Description | |------|-------------| | vibekit_account | Get account info (plan, credits, usage) | | vibekit_list_skills | List implementation skills | | vibekit_get_skill | 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 and check its status"
  • "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 | |----------|-------------|---------| | VIBEKIT_API_KEY | Your VibeKit API key (required) | — | | VIBEKIT_API_URL | API base URL | https://vibekit.bot/api/v1 |

Related Packages

  • vibekit-cli: terminal client for VibeKit cloud workflows
  • vibekit-agent: Telegram bridge for local Claude Code on your own machine

Links