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.
- package/README.md +55 -104
- package/dist/index.js +76 -686
- package/package.json +3 -2
- package/tools.json +363 -0
package/README.md
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
# vibekit-mcp
|
|
2
2
|
|
|
3
|
-
MCP server for VibeKit
|
|
3
|
+
MCP server for VibeKit, deploy apps, manage hosting, and chat with AI agents from any MCP client.
|
|
4
4
|
|
|
5
|
-
|
|
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
|
-
|
|
7
|
+
## Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
npm install -g vibekit-mcp
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
## Setup
|
|
14
14
|
|
|
15
|
-
|
|
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
|
-
|
|
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
|
-
|
|
34
|
+
3. Restart your MCP client
|
|
33
35
|
|
|
34
|
-
|
|
36
|
+
## Available Tools
|
|
35
37
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
### Apps
|
|
38
|
+
### Hosting
|
|
39
39
|
|
|
40
40
|
| Tool | Description |
|
|
41
41
|
|------|-------------|
|
|
42
|
-
| `vibekit_list_apps` | List all
|
|
43
|
-
| `vibekit_get_app` | Get
|
|
44
|
-
| `vibekit_create_app` | Create
|
|
45
|
-
| `vibekit_deploy` | Deploy
|
|
46
|
-
| `vibekit_redeploy` | Redeploy with latest code |
|
|
47
|
-
| `
|
|
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
|
-
| `
|
|
54
|
-
| `
|
|
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
|
-
###
|
|
55
|
+
### Agent
|
|
78
56
|
|
|
79
57
|
| Tool | Description |
|
|
80
58
|
|------|-------------|
|
|
81
|
-
| `
|
|
82
|
-
| `
|
|
83
|
-
| `
|
|
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` |
|
|
91
|
-
| `vibekit_database_status` |
|
|
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
|
|
108
|
-
|
|
109
|
-
### Cron Schedules (per app)
|
|
75
|
+
| `vibekit_qa_status` | Get QA test results |
|
|
110
76
|
|
|
111
|
-
|
|
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
|
|
122
|
-
| `vibekit_get_task` | Get task status
|
|
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` |
|
|
125
|
-
| `vibekit_create_schedule` | Create
|
|
126
|
-
| `vibekit_list_schedules` | List
|
|
127
|
-
| `vibekit_delete_schedule` | Delete
|
|
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
|
|
89
|
+
### Account
|
|
130
90
|
|
|
131
91
|
| Tool | Description |
|
|
132
92
|
|------|-------------|
|
|
133
|
-
| `vibekit_account` |
|
|
134
|
-
| `vibekit_list_skills` |
|
|
135
|
-
| `vibekit_get_skill` | Fetch
|
|
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
|
-
|
|
97
|
+
## Example Usage
|
|
145
98
|
|
|
146
|
-
|
|
99
|
+
Once configured, you can use prompts like:
|
|
147
100
|
|
|
148
|
-
"
|
|
149
|
-
|
|
150
|
-
"
|
|
151
|
-
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
"
|
|
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
|
-
- [
|
|
173
|
-
- [
|
|
174
|
-
- [API
|
|
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)
|