mcp-probe-kit 1.1.0 → 1.1.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/build/index.js +5 -7
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -544,10 +544,8 @@ async function main() {
|
|
|
544
544
|
await server.connect(transport);
|
|
545
545
|
console.error("MCP Probe Kit 服务器已启动");
|
|
546
546
|
}
|
|
547
|
-
//
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
});
|
|
553
|
-
}
|
|
547
|
+
// 启动服务器
|
|
548
|
+
main().catch((error) => {
|
|
549
|
+
console.error("服务器启动失败:", error);
|
|
550
|
+
process.exit(1);
|
|
551
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-probe-kit",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Cursor Development Enhancement Toolkit - MCP Server with 22 practical tools for code quality, development efficiency, and project management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|