vibekit-mcp 0.6.0 → 0.6.1
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/LICENSE +21 -0
- package/dist/index.js +9 -6
- package/package.json +3 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 VibeKit
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/index.js
CHANGED
|
@@ -10,13 +10,16 @@ const SKILLS_REGISTRY = "https://raw.githubusercontent.com/vibekit-apps/skills-r
|
|
|
10
10
|
// Skills cache (TTL: 5 minutes)
|
|
11
11
|
let skillsCache = null;
|
|
12
12
|
const CACHE_TTL = 5 * 60 * 1000;
|
|
13
|
-
if (!API_KEY) {
|
|
14
|
-
console.error("Error: VIBEKIT_API_KEY environment variable is required");
|
|
15
|
-
console.error("Get one at https://t.me/the_vibe_kit_bot with /apikey command");
|
|
16
|
-
process.exit(1);
|
|
17
|
-
}
|
|
18
13
|
// API helper
|
|
19
14
|
async function apiRequest(method, path, body) {
|
|
15
|
+
// The server boots and lists its tools without a key (so MCP introspection
|
|
16
|
+
// works); a key is only required to actually call the VibeKit API.
|
|
17
|
+
if (!API_KEY) {
|
|
18
|
+
return {
|
|
19
|
+
ok: false,
|
|
20
|
+
error: "VIBEKIT_API_KEY is required. Get one at https://t.me/the_vibe_kit_bot with the /apikey command.",
|
|
21
|
+
};
|
|
22
|
+
}
|
|
20
23
|
try {
|
|
21
24
|
const res = await fetch(`${API_BASE}${path}`, {
|
|
22
25
|
method,
|
|
@@ -269,7 +272,7 @@ async function handleTool(name, args) {
|
|
|
269
272
|
// Main server setup
|
|
270
273
|
const server = new index_js_1.Server({
|
|
271
274
|
name: "vibekit-mcp",
|
|
272
|
-
version: "0.
|
|
275
|
+
version: "0.6.1",
|
|
273
276
|
}, {
|
|
274
277
|
capabilities: {
|
|
275
278
|
tools: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibekit-mcp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
|
+
"mcpName": "io.github.609NFT/vibekit-mcp",
|
|
4
5
|
"description": "MCP server for VibeKit — deploy apps, manage hosting, chat with AI agents, and run coding tasks from Claude Desktop, Cursor, and other MCP clients.",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"bin": {
|
|
@@ -29,8 +30,7 @@
|
|
|
29
30
|
"license": "MIT",
|
|
30
31
|
"repository": {
|
|
31
32
|
"type": "git",
|
|
32
|
-
"url": "https://github.com/609NFT/vibekit.git"
|
|
33
|
-
"directory": "packages/mcp-server"
|
|
33
|
+
"url": "https://github.com/609NFT/vibekit-mcp.git"
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://vibekit.bot",
|
|
36
36
|
"dependencies": {
|