@vibegrid/mcp 0.1.1 → 0.1.2
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/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2383,7 +2383,7 @@ async function main() {
|
|
|
2383
2383
|
}
|
|
2384
2384
|
ptyManager.setRemoteHosts(config.remoteHosts ?? []);
|
|
2385
2385
|
scheduler.syncSchedules(config.workflows ?? []);
|
|
2386
|
-
const server = createMcpServer({ configManager, ptyManager, scheduler }, "0.1.
|
|
2386
|
+
const server = createMcpServer({ configManager, ptyManager, scheduler }, "0.1.2");
|
|
2387
2387
|
const transport = new StdioServerTransport();
|
|
2388
2388
|
await server.connect(transport);
|
|
2389
2389
|
transport.onclose = () => {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibegrid/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "VibeGrid MCP server — task management, git, and workflow tools for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Javier Canizalez <javier-canizalez@outlook.com>",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/jcanizalez/vibegrid.git",
|
|
10
|
+
"url": "git+https://github.com/jcanizalez/vibegrid.git",
|
|
11
11
|
"directory": "packages/mcp"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"task-management"
|
|
20
20
|
],
|
|
21
21
|
"bin": {
|
|
22
|
-
"vibegrid-mcp": "
|
|
22
|
+
"vibegrid-mcp": "dist/index.js"
|
|
23
23
|
},
|
|
24
24
|
"main": "./dist/index.js",
|
|
25
25
|
"files": [
|