vibekit-mcp 0.5.4 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/README.md +55 -104
  2. package/dist/index.js +76 -686
  3. package/package.json +3 -2
  4. package/tools.json +363 -0
package/README.md CHANGED
@@ -1,20 +1,22 @@
1
1
  # vibekit-mcp
2
2
 
3
- MCP server for VibeKit control your hosted apps, AI agents, and deployments from Claude Desktop, Cursor, or any MCP client.
3
+ MCP server for VibeKit, deploy apps, manage hosting, and chat with AI agents from any MCP client.
4
4
 
5
- ## Quick Start
5
+ 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`.
6
6
 
7
- **1. Install**
7
+ ## Installation
8
8
 
9
9
  ```bash
10
10
  npm install -g vibekit-mcp
11
11
  ```
12
12
 
13
- **2. Get an API key**
13
+ ## Setup
14
14
 
15
- Go to [app.vibekit.bot](https://app.vibekit.bot) Settings API Keys, or via Telegram: [@the_vibe_kit_bot](https://t.me/the_vibe_kit_bot) → `/apikey`
15
+ 1. Get a VibeKit API key:
16
+ - Open [@the_vibe_kit_bot](https://t.me/the_vibe_kit_bot) in Telegram
17
+ - Send `/apikey` to generate your key
16
18
 
17
- **3. Add to Claude Desktop** (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
19
+ 2. Add to your MCP client config (e.g. Claude Desktop) (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
18
20
 
19
21
  ```json
20
22
  {
@@ -29,134 +31,80 @@ Go to [app.vibekit.bot](https://app.vibekit.bot) → Settings → API Keys, or v
29
31
  }
30
32
  ```
31
33
 
32
- **4. Restart your MCP client** and start building.
34
+ 3. Restart your MCP client
33
35
 
34
- ---
36
+ ## Available Tools
35
37
 
36
- ## What You Can Do
37
-
38
- ### Apps
38
+ ### Hosting
39
39
 
40
40
  | Tool | Description |
41
41
  |------|-------------|
42
- | `vibekit_list_apps` | List all your hosted apps |
43
- | `vibekit_get_app` | Get app details (status, URL, memory, uptime) |
44
- | `vibekit_create_app` | Create a new app from a template |
45
- | `vibekit_deploy` | Deploy a GitHub repo |
46
- | `vibekit_redeploy` | Redeploy with latest code |
47
- | `vibekit_rollback` | Roll back to a previous snapshot |
48
- | `vibekit_deploy_history` | List deployment snapshots |
49
- | `vibekit_app_logs` | Get runtime logs |
42
+ | `vibekit_list_apps` | List all hosted apps |
43
+ | `vibekit_get_app` | Get details about a specific app |
44
+ | `vibekit_create_app` | Create new app from template |
45
+ | `vibekit_deploy` | Deploy GitHub repo to hosting |
46
+ | `vibekit_redeploy` | Redeploy app with latest code |
47
+ | `vibekit_app_logs` | Get application logs |
50
48
  | `vibekit_restart_app` | Restart an app |
51
49
  | `vibekit_stop_app` | Stop an app |
52
50
  | `vibekit_start_app` | Start a stopped app |
53
- | `vibekit_delete_app` | Permanently delete an app |
54
- | `vibekit_exec` | Run a shell command inside a running container |
55
-
56
- ### Environment Variables
57
-
58
- | Tool | Description |
59
- |------|-------------|
60
- | `vibekit_app_env` | Get env vars (values revealed) |
61
- | `vibekit_set_env` | Set one or more env vars |
62
- | `vibekit_delete_env` | Delete a specific env var |
63
-
64
- ### AI Agent
65
-
66
- | Tool | Description |
67
- |------|-------------|
68
- | `vibekit_chat` | Send a message to an app's AI agent |
69
- | `vibekit_agent_status` | Check if agent is idle or running |
70
- | `vibekit_agent_stop` | Stop a running agent request |
71
- | `vibekit_agent_history` | Get conversation history |
72
- | `vibekit_agent_config` | Get current model config |
73
- | `vibekit_agent_set_model` | Change model (`claude-opus-4-6`, `claude-sonnet-4-20250514`, `claude-haiku-3.5`) |
74
- | `vibekit_agent_reset` | Reset agent (clear sessions, memory, restart, or cleanup disk) |
75
- | `vibekit_agent_compact` | Compact agent memory to free context |
51
+ | `vibekit_app_env` | Get app environment variables |
52
+ | `vibekit_set_env` | Set app environment variables |
53
+ | `vibekit_delete_app` | Delete an app permanently |
76
54
 
77
- ### Files
55
+ ### Agent
78
56
 
79
57
  | Tool | Description |
80
58
  |------|-------------|
81
- | `vibekit_list_files` | List files in the workspace |
82
- | `vibekit_read_file` | Read a file's contents |
83
- | `vibekit_write_file` | Write or update a file |
84
- | `vibekit_file_changes` | See uncommitted file changes |
59
+ | `vibekit_chat` | Chat with an app's AI agent |
60
+ | `vibekit_agent_status` | Get agent status |
61
+ | `vibekit_agent_history` | Get chat history with agent |
85
62
 
86
63
  ### Database
87
64
 
88
65
  | Tool | Description |
89
66
  |------|-------------|
90
- | `vibekit_enable_database` | Provision a Postgres database |
91
- | `vibekit_database_status` | Connection info and stats |
92
- | `vibekit_database_schema` | Get tables and columns |
93
- | `vibekit_database_query` | Run a SQL query |
94
-
95
- ### Custom Domains
96
-
97
- | Tool | Description |
98
- |------|-------------|
99
- | `vibekit_add_domain` | Add a custom domain |
100
- | `vibekit_remove_domain` | Remove a custom domain |
67
+ | `vibekit_enable_database` | Enable database for an app |
68
+ | `vibekit_database_status` | Get database status and connection info |
101
69
 
102
70
  ### QA
103
71
 
104
72
  | Tool | Description |
105
73
  |------|-------------|
106
74
  | `vibekit_run_qa` | Run automated QA tests |
107
- | `vibekit_qa_status` | Get latest QA results |
108
-
109
- ### Cron Schedules (per app)
75
+ | `vibekit_qa_status` | Get QA test results |
110
76
 
111
- | Tool | Description |
112
- |------|-------------|
113
- | `vibekit_app_schedules` | List cron jobs for an app |
114
- | `vibekit_create_app_schedule` | Create a cron job |
115
- | `vibekit_delete_app_schedule` | Delete a cron job |
116
-
117
- ### Async Coding Tasks
77
+ ### Tasks
118
78
 
119
79
  | Tool | Description |
120
80
  |------|-------------|
121
- | `vibekit_submit_task` | Submit an async coding task (GitHub-based) |
122
- | `vibekit_get_task` | Get task status and result |
81
+ | `vibekit_submit_task` | Submit a coding task |
82
+ | `vibekit_get_task` | Get task status/result |
123
83
  | `vibekit_list_tasks` | List recent tasks |
124
- | `vibekit_wait_for_task` | Poll until task completes |
125
- | `vibekit_create_schedule` | Create a recurring coding task |
126
- | `vibekit_list_schedules` | List recurring schedules |
127
- | `vibekit_delete_schedule` | Delete a schedule |
84
+ | `vibekit_wait_for_task` | Wait for task completion |
85
+ | `vibekit_create_schedule` | Create recurring scheduled task |
86
+ | `vibekit_list_schedules` | List scheduled tasks |
87
+ | `vibekit_delete_schedule` | Delete scheduled task |
128
88
 
129
- ### Account & Skills
89
+ ### Account
130
90
 
131
91
  | Tool | Description |
132
92
  |------|-------------|
133
- | `vibekit_account` | Plan, credits, and usage |
134
- | `vibekit_list_skills` | Browse implementation skills |
135
- | `vibekit_get_skill` | Fetch a skill's full content |
136
-
137
- ---
138
-
139
- ## Example Prompts
140
-
141
- ```
142
- "List my apps and show the logs for the one that's erroring"
93
+ | `vibekit_account` | Get account info (plan, credits, usage) |
94
+ | `vibekit_list_skills` | List implementation skills |
95
+ | `vibekit_get_skill` | Fetch specific skill content |
143
96
 
144
- "Chat with the agent on my 'dogs' app — ask it to add a dark mode toggle"
97
+ ## Example Usage
145
98
 
146
- "Read the server.js file from my app and tell me what it does"
99
+ Once configured, you can use prompts like:
147
100
 
148
- "Run a SQL query on my app's database: SELECT COUNT(*) FROM users"
149
-
150
- "Redeploy my app, then run QA and show me the results"
151
-
152
- "Roll back my app to the previous deployment"
153
-
154
- "Set DATABASE_URL and STRIPE_SECRET as env vars on my app, then restart it"
155
-
156
- "Check my account balance and show how many sessions I've used this month"
157
- ```
158
-
159
- ---
101
+ - "Deploy my GitHub repo to VibeKit and create a new app"
102
+ - "Chat with the AI agent for my app about adding a contact form"
103
+ - "Show me the logs for my app and restart it if there are errors"
104
+ - "Enable a database for my app and check its status"
105
+ - "Run QA tests on my deployed app"
106
+ - "Check my VibeKit account balance and list my apps"
107
+ - "Create a weekly schedule to improve my app's performance"
160
108
 
161
109
  ## Environment Variables
162
110
 
@@ -165,11 +113,14 @@ Go to [app.vibekit.bot](https://app.vibekit.bot) → Settings → API Keys, or v
165
113
  | `VIBEKIT_API_KEY` | Your VibeKit API key (required) | — |
166
114
  | `VIBEKIT_API_URL` | API base URL | `https://vibekit.bot/api/v1` |
167
115
 
168
- ---
116
+ ## Related Packages
117
+
118
+ - `vibekit-cli`: terminal client for VibeKit cloud workflows
119
+ - `vibekit-agent`: Telegram bridge for local Claude Code on your own machine
169
120
 
170
121
  ## Links
171
122
 
172
- - [Dashboard](https://app.vibekit.bot)
173
- - [Website](https://vibekit.bot)
174
- - [API Docs](https://vibekit.bot/SKILL.md)
175
- - [GitHub](https://github.com/609NFT/vibekit)
123
+ - [VibeKit Website](https://vibekit.bot)
124
+ - [API Documentation](https://vibekit.bot/SKILL.md)
125
+ - [Get API Key](https://t.me/the_vibe_kit_bot)
126
+ - [GitHub](https://github.com/609NFT/vibekit)