mcp-probe-kit 1.2.6 → 1.2.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/build/index.js +4 -4
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { detectShell, initSetting, initProject, gencommit, debug, genapi, codeRe
|
|
|
6
6
|
// 创建MCP服务器实例
|
|
7
7
|
const server = new Server({
|
|
8
8
|
name: "mcp-probe-kit",
|
|
9
|
-
version: "1.2.
|
|
9
|
+
version: "1.2.7",
|
|
10
10
|
}, {
|
|
11
11
|
capabilities: {
|
|
12
12
|
tools: {},
|
|
@@ -69,7 +69,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
name: "gencommit",
|
|
72
|
-
description: "【生成提交】分析代码变更并生成规范的 Git commit
|
|
72
|
+
description: "【生成提交】分析代码变更并生成规范的 Git commit 消息(支持 emoji)",
|
|
73
73
|
inputSchema: {
|
|
74
74
|
type: "object",
|
|
75
75
|
properties: {
|
|
@@ -79,7 +79,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
79
79
|
},
|
|
80
80
|
type: {
|
|
81
81
|
type: "string",
|
|
82
|
-
description: "提交类型:
|
|
82
|
+
description: "提交类型:fixed, fix, feat, docs, style, chore, refactor, test",
|
|
83
83
|
},
|
|
84
84
|
},
|
|
85
85
|
required: [],
|
|
@@ -528,7 +528,7 @@ server.setRequestHandler(ReadResourceRequestSchema, async (request) => {
|
|
|
528
528
|
timestamp: new Date().toISOString(),
|
|
529
529
|
serverInfo: {
|
|
530
530
|
name: "mcp-probe-kit",
|
|
531
|
-
version: "1.
|
|
531
|
+
version: "1.2.7",
|
|
532
532
|
description: "Cursor 开发增强工具集",
|
|
533
533
|
},
|
|
534
534
|
tools: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-probe-kit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"description": "Cursor Development Enhancement Toolkit - MCP Server with 23 practical tools for code quality, development efficiency, and project management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|