@vornrun/mcp 0.2.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 +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2775,7 +2775,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
2775
2775
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
2776
2776
|
async function main() {
|
|
2777
2777
|
configManager.init();
|
|
2778
|
-
const version = true ? "0.2
|
|
2778
|
+
const version = true ? "0.3.2" : createRequire(import.meta.url)("../package.json").version;
|
|
2779
2779
|
const server = createMcpServer(version);
|
|
2780
2780
|
const transport = new StdioServerTransport();
|
|
2781
2781
|
await server.connect(transport);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vornrun/mcp",
|
|
3
|
-
"version": "0.2
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Vorn MCP server — task management, git, and workflow tools for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
35
35
|
"libsql": "^0.5.29",
|
|
36
36
|
"pino": "^10.3.1",
|
|
37
|
-
"ws": "^8.
|
|
37
|
+
"ws": "^8.21.0",
|
|
38
38
|
"zod": "^4.4.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@vornrun/server": "0.2.0",
|
|
42
42
|
"@vornrun/shared": "0.2.0",
|
|
43
43
|
"tsup": "^8.5.1",
|
|
44
|
-
"tsx": "^4.
|
|
44
|
+
"tsx": "^4.22.4",
|
|
45
45
|
"typescript": "^6.0.3"
|
|
46
46
|
}
|
|
47
47
|
}
|