@vornrun/mcp 0.7.0-beta.6 → 0.7.0-beta.7
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 +14 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2914,6 +2914,18 @@ var triggerConfigSchema = z5.union([
|
|
|
2914
2914
|
projectFilter: V.name.optional(),
|
|
2915
2915
|
fromStatus: z5.enum(["todo", "in_progress", "in_review", "done", "cancelled"]).optional(),
|
|
2916
2916
|
toStatus: z5.enum(["todo", "in_progress", "in_review", "done", "cancelled"]).optional()
|
|
2917
|
+
}),
|
|
2918
|
+
z5.object({
|
|
2919
|
+
triggerType: z5.literal("connectorPoll"),
|
|
2920
|
+
connectionId: V.id,
|
|
2921
|
+
event: V.shortText,
|
|
2922
|
+
cron: V.shortText,
|
|
2923
|
+
timezone: V.shortText.optional()
|
|
2924
|
+
}),
|
|
2925
|
+
z5.object({
|
|
2926
|
+
triggerType: z5.literal("webhook"),
|
|
2927
|
+
method: z5.enum(["POST", "GET"]),
|
|
2928
|
+
token: V.shortText
|
|
2917
2929
|
})
|
|
2918
2930
|
]);
|
|
2919
2931
|
var nodeSchema = z5.object({
|
|
@@ -2928,6 +2940,7 @@ var nodeSchema = z5.object({
|
|
|
2928
2940
|
"approval",
|
|
2929
2941
|
"createTaskFromItem",
|
|
2930
2942
|
"callConnectorAction",
|
|
2943
|
+
"httpRequest",
|
|
2931
2944
|
"loop"
|
|
2932
2945
|
]),
|
|
2933
2946
|
label: V.shortText,
|
|
@@ -4393,7 +4406,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
4393
4406
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
4394
4407
|
async function main() {
|
|
4395
4408
|
configManager.init();
|
|
4396
|
-
const version = true ? "0.7.0-beta.
|
|
4409
|
+
const version = true ? "0.7.0-beta.7" : createRequire(import.meta.url)("../package.json").version;
|
|
4397
4410
|
const server = createMcpServer(version);
|
|
4398
4411
|
const transport = new StdioServerTransport();
|
|
4399
4412
|
await server.connect(transport);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vornrun/mcp",
|
|
3
|
-
"version": "0.7.0-beta.
|
|
3
|
+
"version": "0.7.0-beta.7",
|
|
4
4
|
"description": "Vorn MCP server — task management, git, and workflow tools for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"zod": "^4.4.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@vornrun/server": "0.7.0-beta.
|
|
42
|
-
"@vornrun/shared": "0.7.0-beta.
|
|
41
|
+
"@vornrun/server": "0.7.0-beta.7",
|
|
42
|
+
"@vornrun/shared": "0.7.0-beta.7",
|
|
43
43
|
"tsup": "^8.5.1",
|
|
44
44
|
"tsx": "^4.23.1",
|
|
45
45
|
"typescript": "^6.0.3"
|