@vibegrid/mcp 0.3.1 → 0.3.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 +5 -5
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1859,7 +1859,7 @@ function registerWorkflowTools(server) {
|
|
|
1859
1859
|
server.tool(
|
|
1860
1860
|
"create_workflow",
|
|
1861
1861
|
"Create a new workflow. Accepts either full nodes/edges or a convenience flat format (trigger + actions array).",
|
|
1862
|
-
|
|
1862
|
+
{
|
|
1863
1863
|
name: V.title.describe("Workflow name"),
|
|
1864
1864
|
trigger: triggerConfigSchema.optional().describe("Trigger config (convenience mode). Defaults to manual."),
|
|
1865
1865
|
actions: z5.array(launchAgentConfigSchema).optional().describe("Actions to execute (convenience mode). Auto-generates graph."),
|
|
@@ -1869,7 +1869,7 @@ function registerWorkflowTools(server) {
|
|
|
1869
1869
|
icon_color: V.hexColor.optional().describe("Hex color (default: #6366f1)"),
|
|
1870
1870
|
enabled: z5.boolean().optional().describe("Whether workflow is enabled (default: true)"),
|
|
1871
1871
|
stagger_delay_ms: z5.number().optional().describe("Delay in ms between actions")
|
|
1872
|
-
}
|
|
1872
|
+
},
|
|
1873
1873
|
async (args) => {
|
|
1874
1874
|
let nodes;
|
|
1875
1875
|
let edges;
|
|
@@ -1901,7 +1901,7 @@ function registerWorkflowTools(server) {
|
|
|
1901
1901
|
server.tool(
|
|
1902
1902
|
"update_workflow",
|
|
1903
1903
|
"Update a workflow's properties",
|
|
1904
|
-
|
|
1904
|
+
{
|
|
1905
1905
|
id: V.id.describe("Workflow ID"),
|
|
1906
1906
|
name: V.title.optional(),
|
|
1907
1907
|
nodes: z5.array(nodeSchema).optional(),
|
|
@@ -1910,7 +1910,7 @@ function registerWorkflowTools(server) {
|
|
|
1910
1910
|
icon_color: V.hexColor.optional(),
|
|
1911
1911
|
enabled: z5.boolean().optional(),
|
|
1912
1912
|
stagger_delay_ms: z5.number().optional()
|
|
1913
|
-
}
|
|
1913
|
+
},
|
|
1914
1914
|
async (args) => {
|
|
1915
1915
|
const workflows = dbListWorkflows();
|
|
1916
1916
|
const workflow = workflows.find((w) => w.id === args.id);
|
|
@@ -2536,7 +2536,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
2536
2536
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
2537
2537
|
async function main() {
|
|
2538
2538
|
configManager.init();
|
|
2539
|
-
const version = true ? "0.3.
|
|
2539
|
+
const version = true ? "0.3.2" : createRequire(import.meta.url)("../package.json").version;
|
|
2540
2540
|
const server = createMcpServer(version);
|
|
2541
2541
|
const transport = new StdioServerTransport();
|
|
2542
2542
|
await server.connect(transport);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibegrid/mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.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",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"dev": "tsx src/index.ts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
34
|
+
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
35
35
|
"libsql": "^0.5.22",
|
|
36
36
|
"pino": "^9.6.0",
|
|
37
37
|
"ws": "^8.18.0",
|
|
38
|
-
"zod": "^
|
|
38
|
+
"zod": "^3.23.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@vibegrid/server": "0.0.1",
|