mcp-probe-kit 3.0.19 → 3.0.21
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/README.md +12 -5
- package/build/index.js +3 -1
- package/build/lib/__tests__/agents-md-template.unit.test.js +2 -0
- package/build/lib/__tests__/memory-config.unit.test.js +9 -0
- package/build/lib/__tests__/memory-injection.unit.test.d.ts +1 -0
- package/build/lib/__tests__/memory-injection.unit.test.js +51 -0
- package/build/lib/__tests__/memory-orchestration.unit.test.d.ts +1 -0
- package/build/lib/__tests__/memory-orchestration.unit.test.js +84 -0
- package/build/lib/__tests__/memory-payload.unit.test.d.ts +1 -0
- package/build/lib/__tests__/memory-payload.unit.test.js +35 -0
- package/build/lib/agents-md-template.js +7 -5
- package/build/lib/memory-client.d.ts +8 -1
- package/build/lib/memory-client.js +53 -44
- package/build/lib/memory-config.d.ts +8 -0
- package/build/lib/memory-config.js +19 -0
- package/build/lib/memory-orchestration.d.ts +7 -2
- package/build/lib/memory-orchestration.js +81 -8
- package/build/lib/memory-payload.d.ts +21 -0
- package/build/lib/memory-payload.js +65 -0
- package/build/resources/ui-ux-data/metadata.json +1 -1
- package/build/schemas/index.d.ts +38 -9
- package/build/schemas/memory-tools.d.ts +38 -9
- package/build/schemas/memory-tools.js +24 -9
- package/build/tools/index.d.ts +1 -0
- package/build/tools/index.js +1 -0
- package/build/tools/memorize_asset.js +12 -0
- package/build/tools/scan_and_extract_patterns.js +7 -7
- package/build/tools/search_memory.d.ts +7 -0
- package/build/tools/search_memory.js +57 -0
- package/build/tools/start_bugfix.js +3 -3
- package/build/tools/start_feature.js +3 -3
- package/build/tools/start_ui.js +3 -3
- package/docs/data/tools.js +18 -0
- package/docs/i18n/all-tools/en.json +6 -1
- package/docs/i18n/all-tools/ja.json +2 -1
- package/docs/i18n/all-tools/ko.json +2 -1
- package/docs/i18n/all-tools/zh-CN.json +7 -2
- package/docs/i18n/en.json +5 -5
- package/docs/i18n/ja.json +2 -2
- package/docs/i18n/ko.json +2 -2
- package/docs/i18n/zh-CN.json +7 -7
- package/docs/memory-local-setup.md +1 -1
- package/docs/memory-local-setup.zh-CN.md +5 -2
- package/docs/pages/getting-started.html +3 -2
- package/package.json +2 -2
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { parseArgs, getString, getNumber } from '../utils/parseArgs.js';
|
|
2
|
+
import { okStructured } from '../lib/response.js';
|
|
3
|
+
import { createMemoryClient } from '../lib/memory-client.js';
|
|
4
|
+
import { shouldShowSourceInSearch } from '../lib/memory-orchestration.js';
|
|
5
|
+
import { getMemoryConfig } from '../lib/memory-config.js';
|
|
6
|
+
import { handleToolError } from '../utils/error-handler.js';
|
|
7
|
+
export async function searchMemory(args) {
|
|
8
|
+
try {
|
|
9
|
+
const parsed = parseArgs(args, {
|
|
10
|
+
defaultValues: {
|
|
11
|
+
query: '',
|
|
12
|
+
type: '',
|
|
13
|
+
limit: 0,
|
|
14
|
+
},
|
|
15
|
+
});
|
|
16
|
+
const query = getString(parsed.query);
|
|
17
|
+
if (!query) {
|
|
18
|
+
throw new Error('缺少必填参数: query');
|
|
19
|
+
}
|
|
20
|
+
const client = createMemoryClient();
|
|
21
|
+
if (!client.isEnabled()) {
|
|
22
|
+
return okStructured('记忆服务未开启,无法检索。', {
|
|
23
|
+
enabled: false,
|
|
24
|
+
results: [],
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
const config = getMemoryConfig();
|
|
28
|
+
const limit = getNumber(parsed.limit, config.searchLimit);
|
|
29
|
+
const typeFilter = getString(parsed.type);
|
|
30
|
+
const tags = Array.isArray(parsed.tags)
|
|
31
|
+
? parsed.tags.filter((item) => typeof item === 'string')
|
|
32
|
+
: [];
|
|
33
|
+
const results = await client.search(query, {
|
|
34
|
+
limit,
|
|
35
|
+
preferTypes: typeFilter ? [typeFilter] : [],
|
|
36
|
+
preferTags: tags,
|
|
37
|
+
});
|
|
38
|
+
const items = results.map((item) => ({
|
|
39
|
+
id: item.id,
|
|
40
|
+
score: item.score,
|
|
41
|
+
name: item.name,
|
|
42
|
+
type: item.type,
|
|
43
|
+
summary: item.summary,
|
|
44
|
+
tags: item.tags,
|
|
45
|
+
sourcePath: shouldShowSourceInSearch(item, config) ? item.sourcePath : undefined,
|
|
46
|
+
}));
|
|
47
|
+
return okStructured(results.length > 0 ? `找到 ${results.length} 条相关记忆` : '未找到相关记忆', {
|
|
48
|
+
enabled: true,
|
|
49
|
+
query,
|
|
50
|
+
count: results.length,
|
|
51
|
+
results: items,
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
catch (error) {
|
|
55
|
+
return handleToolError(error, 'search_memory');
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -423,7 +423,7 @@ ${graphContext.highlights.length > 0
|
|
|
423
423
|
: "- 任务级线索: 无"}
|
|
424
424
|
- 使用方式: 先读取基线图谱,再用本次任务图谱做 TBP-4 / TBP-5 / TBP-6 的边界与真因收敛
|
|
425
425
|
`;
|
|
426
|
-
const memoryContext = await loadMemoryInjectionContext([errorMessage, stackTrace, codeContext].filter(Boolean).join("\n"));
|
|
426
|
+
const memoryContext = await loadMemoryInjectionContext([errorMessage, stackTrace, codeContext].filter(Boolean).join("\n"), "bugfix");
|
|
427
427
|
const memoryGuideSection = renderMemoryGuideSection(memoryContext);
|
|
428
428
|
if (requirementsMode === "loop") {
|
|
429
429
|
throwIfAborted(context?.signal, "start_bugfix(loop) 已取消");
|
|
@@ -512,7 +512,7 @@ ${graphContext.highlights.length > 0
|
|
|
512
512
|
],
|
|
513
513
|
notes: [
|
|
514
514
|
...headerNotes,
|
|
515
|
-
...(memoryContext.enabled ? ['记忆系统:
|
|
515
|
+
...(memoryContext.enabled ? ['记忆系统: 已启用,历史修复经验全文已自动注入,结束后评估沉淀'] : []),
|
|
516
516
|
],
|
|
517
517
|
});
|
|
518
518
|
const loopTemplate = profileDecision.resolved === 'strict'
|
|
@@ -577,7 +577,7 @@ ${graphContext.highlights.length > 0
|
|
|
577
577
|
],
|
|
578
578
|
notes: [
|
|
579
579
|
...headerNotes,
|
|
580
|
-
...(memoryContext.enabled ? ['记忆系统:
|
|
580
|
+
...(memoryContext.enabled ? ['记忆系统: 已启用,相似历史经验全文已自动注入'] : []),
|
|
581
581
|
],
|
|
582
582
|
});
|
|
583
583
|
const promptTemplate = profileDecision.resolved === 'strict'
|
|
@@ -303,7 +303,7 @@ ${graphContext.highlights.length > 0
|
|
|
303
303
|
]
|
|
304
304
|
.filter(Boolean)
|
|
305
305
|
.join("\n");
|
|
306
|
-
const memoryContext = await loadMemoryInjectionContext(`${featureName}\n${description}
|
|
306
|
+
const memoryContext = await loadMemoryInjectionContext(`${featureName}\n${description}`, 'feature');
|
|
307
307
|
const memoryGuideSection = renderMemoryGuideSection(memoryContext);
|
|
308
308
|
if (requirementsMode === "loop") {
|
|
309
309
|
throwIfAborted(context?.signal, "start_feature(loop) 已取消");
|
|
@@ -392,7 +392,7 @@ ${graphContext.highlights.length > 0
|
|
|
392
392
|
notes: [
|
|
393
393
|
`模板档位: ${templateProfile}`,
|
|
394
394
|
graphStatusNote,
|
|
395
|
-
...(memoryContext.enabled ? ['记忆系统:
|
|
395
|
+
...(memoryContext.enabled ? ['记忆系统: 已启用,历史经验全文已自动注入,结束后评估是否沉淀'] : []),
|
|
396
396
|
],
|
|
397
397
|
});
|
|
398
398
|
const guide = (header + LOOP_PROMPT_TEMPLATE
|
|
@@ -452,7 +452,7 @@ ${graphContext.highlights.length > 0
|
|
|
452
452
|
notes: [
|
|
453
453
|
`模板档位: ${templateProfile}`,
|
|
454
454
|
graphStatusNote,
|
|
455
|
-
...(memoryContext.enabled ? ['记忆系统:
|
|
455
|
+
...(memoryContext.enabled ? ['记忆系统: 已启用,历史经验全文已自动注入'] : []),
|
|
456
456
|
],
|
|
457
457
|
});
|
|
458
458
|
const guide = (header + PROMPT_TEMPLATE
|
package/build/tools/start_ui.js
CHANGED
|
@@ -542,7 +542,7 @@ export async function startUi(args, context) {
|
|
|
542
542
|
const skillBridgeStep = buildSkillBridgePlanStep(skillBridge);
|
|
543
543
|
const skillBridgeSection = renderSkillBridgeSection(skillBridge);
|
|
544
544
|
headerNotes.push(buildSkillHeaderNote(skillBridge));
|
|
545
|
-
const memoryContext = await loadMemoryInjectionContext(description || templateName);
|
|
545
|
+
const memoryContext = await loadMemoryInjectionContext(description || templateName, 'ui');
|
|
546
546
|
const memoryGuideSection = renderMemoryGuideSection(memoryContext);
|
|
547
547
|
// 验证 mode 参数
|
|
548
548
|
const validModes = ["auto", "manual"];
|
|
@@ -906,7 +906,7 @@ ${recommendation.reasoning}
|
|
|
906
906
|
],
|
|
907
907
|
notes: [
|
|
908
908
|
...headerNotes,
|
|
909
|
-
...(memoryContext.enabled ? ['记忆系统:
|
|
909
|
+
...(memoryContext.enabled ? ['记忆系统: 已启用,相似历史 UI 经验全文已自动注入'] : []),
|
|
910
910
|
],
|
|
911
911
|
});
|
|
912
912
|
const smartPlan = header + skillBridgeSection + (profileDecision.resolved === 'strict' ? smartPlanStrict : smartPlanGuided) + memoryGuideSection;
|
|
@@ -1037,7 +1037,7 @@ start_ui "设置页面" --framework=react
|
|
|
1037
1037
|
],
|
|
1038
1038
|
notes: [
|
|
1039
1039
|
...headerNotes,
|
|
1040
|
-
...(memoryContext.enabled ? ['记忆系统:
|
|
1040
|
+
...(memoryContext.enabled ? ['记忆系统: 已启用,相似历史 UI 经验全文已自动注入'] : []),
|
|
1041
1041
|
],
|
|
1042
1042
|
});
|
|
1043
1043
|
const baseTemplate = profileDecision.resolved === 'strict'
|
package/docs/data/tools.js
CHANGED
|
@@ -402,6 +402,24 @@ verbose: true`
|
|
|
402
402
|
}
|
|
403
403
|
],
|
|
404
404
|
memory: [
|
|
405
|
+
{
|
|
406
|
+
name: 'search_memory',
|
|
407
|
+
description: '按语义检索共享记忆库,支持 type/tags 优先排序',
|
|
408
|
+
schema: 'MemorySearchSchema',
|
|
409
|
+
params: [
|
|
410
|
+
{ name: 'query', type: 'string', required: true, desc: '检索关键词或问题描述' },
|
|
411
|
+
{ name: 'type', type: 'string', required: false, desc: '优先匹配的类型,如 bugfix' },
|
|
412
|
+
{ name: 'tags', type: 'array', required: false, desc: '优先匹配的标签' },
|
|
413
|
+
{ name: 'limit', type: 'number', required: false, desc: '返回条数' }
|
|
414
|
+
],
|
|
415
|
+
usage: '在 start_* 之外主动查找历史 Bug 修复或可复用模式',
|
|
416
|
+
example: `// 使用示例
|
|
417
|
+
你: 请使用 search_memory 搜索 proxy 相关 bugfix
|
|
418
|
+
|
|
419
|
+
query: "proxy 400 HTTPS"
|
|
420
|
+
type: "bugfix"
|
|
421
|
+
limit: 5`
|
|
422
|
+
},
|
|
405
423
|
{
|
|
406
424
|
name: 'read_memory_asset',
|
|
407
425
|
description: '按 asset_id 读取已存储 memory 资产的完整内容和元数据',
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"ui_design_system": "Design System",
|
|
42
42
|
"ui_search": "Search UI",
|
|
43
43
|
"code_insight": "Code Insight",
|
|
44
|
+
"search_memory": "Search Memory",
|
|
44
45
|
"read_memory_asset": "Read Memory",
|
|
45
46
|
"memorize_asset": "Store Memory",
|
|
46
47
|
"scan_and_extract_patterns": "Extract Patterns",
|
|
@@ -75,7 +76,7 @@
|
|
|
75
76
|
},
|
|
76
77
|
"memory": {
|
|
77
78
|
"title": "Memory & Cursor History",
|
|
78
|
-
"count": "
|
|
79
|
+
"count": "7 tools"
|
|
79
80
|
}
|
|
80
81
|
},
|
|
81
82
|
"toolsData": {
|
|
@@ -167,6 +168,10 @@
|
|
|
167
168
|
"description": "Code graph insight tool, bridging GitNexus to analyze call chains, context, and impact (auto-degrades when unavailable)",
|
|
168
169
|
"usage": "Refresh the GitNexus index, perform task-level call-chain/context/impact analysis, and persist results to docs/graph-insights plus the project-context index"
|
|
169
170
|
},
|
|
171
|
+
"search_memory": {
|
|
172
|
+
"description": "Semantic search across the shared memory pool, with optional type/tags preference",
|
|
173
|
+
"usage": "Use outside start_* to find historical bugfixes or patterns; follow with read_memory_asset for full content"
|
|
174
|
+
},
|
|
170
175
|
"read_memory_asset": {
|
|
171
176
|
"description": "Read the full content and metadata of a stored memory asset by asset ID",
|
|
172
177
|
"usage": "Use this after a workflow or search result already found a memory summary and you need the full reusable artifact"
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"ui_search": "UI検索",
|
|
43
43
|
"sync_ui_data": "データ同期",
|
|
44
44
|
"code_insight": "コード洞察",
|
|
45
|
+
"search_memory": "メモリ検索",
|
|
45
46
|
"read_memory_asset": "メモリ読取",
|
|
46
47
|
"memorize_asset": "メモリ保存",
|
|
47
48
|
"scan_and_extract_patterns": "パターン抽出",
|
|
@@ -76,7 +77,7 @@
|
|
|
76
77
|
},
|
|
77
78
|
"memory": {
|
|
78
79
|
"title": "Memory と Cursor History",
|
|
79
|
-
"count": "
|
|
80
|
+
"count": "7個"
|
|
80
81
|
}
|
|
81
82
|
},
|
|
82
83
|
"toolsData": {
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"ui_search": "UI 검색",
|
|
43
43
|
"sync_ui_data": "데이터 동기화",
|
|
44
44
|
"code_insight": "코드 인사이트",
|
|
45
|
+
"search_memory": "메모리 검색",
|
|
45
46
|
"read_memory_asset": "메모리 읽기",
|
|
46
47
|
"memorize_asset": "메모리 저장",
|
|
47
48
|
"scan_and_extract_patterns": "패턴 추출",
|
|
@@ -76,7 +77,7 @@
|
|
|
76
77
|
},
|
|
77
78
|
"memory": {
|
|
78
79
|
"title": "Memory 및 Cursor History",
|
|
79
|
-
"count": "
|
|
80
|
+
"count": "7개"
|
|
80
81
|
}
|
|
81
82
|
},
|
|
82
83
|
"toolsData": {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"keywords": "AI 开发工具, 代码生成工具, 代码审查工具, Git 自动化, UI 生成, 代码重构, 性能优化, 安全扫描"
|
|
6
6
|
},
|
|
7
7
|
"page": {
|
|
8
|
-
"subtitle": "MCP Probe Kit 提供
|
|
8
|
+
"subtitle": "MCP Probe Kit 提供 29 个实用工具,核心与编排工具支持结构化输出"
|
|
9
9
|
},
|
|
10
10
|
"search": {
|
|
11
11
|
"placeholder": "🔍 搜索工具名称或描述...",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"ui_design_system": "设计系统",
|
|
42
42
|
"ui_search": "搜索UI",
|
|
43
43
|
"code_insight": "图谱洞察",
|
|
44
|
+
"search_memory": "搜索记忆",
|
|
44
45
|
"read_memory_asset": "读取记忆",
|
|
45
46
|
"memorize_asset": "沉淀记忆",
|
|
46
47
|
"scan_and_extract_patterns": "抽取模式",
|
|
@@ -75,7 +76,7 @@
|
|
|
75
76
|
},
|
|
76
77
|
"memory": {
|
|
77
78
|
"title": "记忆与 Cursor 历史",
|
|
78
|
-
"count": "
|
|
79
|
+
"count": "7 个"
|
|
79
80
|
}
|
|
80
81
|
},
|
|
81
82
|
"toolsData": {
|
|
@@ -167,6 +168,10 @@
|
|
|
167
168
|
"description": "代码图谱洞察工具,桥接 GitNexus 分析调用链、上下文和影响面(不可用时自动降级)",
|
|
168
169
|
"usage": "用于刷新 GitNexus 图谱、获取任务级调用链/上下文/影响面,并把结果保存到 docs/graph-insights 与 project-context 索引"
|
|
169
170
|
},
|
|
171
|
+
"search_memory": {
|
|
172
|
+
"description": "按语义检索共享记忆库,支持 type/tags 优先排序",
|
|
173
|
+
"usage": "在 start_* 之外主动查找历史 Bug 修复或可复用模式;命中后用 read_memory_asset 读全文"
|
|
174
|
+
},
|
|
170
175
|
"read_memory_asset": {
|
|
171
176
|
"description": "按资产 ID 读取已沉淀记忆的完整内容与元数据",
|
|
172
177
|
"usage": "当编排阶段已经命中记忆摘要,需要进一步查看完整代码、规范或模式详情时使用"
|
package/docs/i18n/en.json
CHANGED
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"hero": {
|
|
15
15
|
"title": "🚀 MCP Probe Kit",
|
|
16
16
|
"subtitle": "AI Development Enhancement Toolkit · Documentation Center",
|
|
17
|
-
"version": "v3.0.
|
|
17
|
+
"version": "v3.0.21",
|
|
18
18
|
"quickStart": "Quick Start",
|
|
19
19
|
"visitMainSite": "Visit ByteZoneX"
|
|
20
20
|
},
|
|
21
21
|
"sections": {
|
|
22
22
|
"quickStart": {
|
|
23
23
|
"title": "Quick Start",
|
|
24
|
-
"description": "Get started with MCP Probe Kit v3.0.
|
|
24
|
+
"description": "Get started with MCP Probe Kit v3.0.21 in 5 minutes",
|
|
25
25
|
"installConfig": "Installation & Configuration"
|
|
26
26
|
},
|
|
27
27
|
"tools": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
"gettingStarted": {
|
|
65
65
|
"title": "Installation & Configuration",
|
|
66
|
-
"subtitle": "Get started with MCP Probe Kit v3.0.
|
|
66
|
+
"subtitle": "Get started with MCP Probe Kit v3.0.21 in 5 minutes. Supports Cursor, Cline, and Claude Desktop",
|
|
67
67
|
"breadcrumb": {
|
|
68
68
|
"home": "Documentation",
|
|
69
69
|
"quickStart": "Quick Start",
|
|
@@ -353,7 +353,7 @@
|
|
|
353
353
|
"subtitle": "MCP Probe Kit integrates complete development process, best practices guide from requirements to deployment",
|
|
354
354
|
"overview": {
|
|
355
355
|
"title": "Complete Development Process",
|
|
356
|
-
"description": "MCP Probe Kit's
|
|
356
|
+
"description": "MCP Probe Kit's 29 tools cover the complete development process from requirements analysis to code deployment. Here are the recommended best practices.",
|
|
357
357
|
"coreIdea": "Core Philosophy:",
|
|
358
358
|
"coreIdeaText": "Chain the entire development process through workflow orchestration tools (start_*), making AI your development assistant."
|
|
359
359
|
},
|
|
@@ -608,7 +608,7 @@
|
|
|
608
608
|
"resources": {
|
|
609
609
|
"title": "More Resources",
|
|
610
610
|
"allTools": "Complete Tools Reference",
|
|
611
|
-
"allToolsDesc": "View detailed descriptions of all
|
|
611
|
+
"allToolsDesc": "View detailed descriptions of all 29 tools",
|
|
612
612
|
"gettingStarted": "Installation & Configuration",
|
|
613
613
|
"gettingStartedDesc": "Quick start guide",
|
|
614
614
|
"migration": "Migration Guide",
|
package/docs/i18n/ja.json
CHANGED
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"hero": {
|
|
15
15
|
"title": "🚀 MCP Probe Kit",
|
|
16
16
|
"subtitle": "AI開発強化ツールキット · ドキュメントセンター",
|
|
17
|
-
"version": "v3.0.
|
|
17
|
+
"version": "v3.0.21",
|
|
18
18
|
"quickStart": "クイックスタート",
|
|
19
19
|
"visitMainSite": "ByteZoneXを訪問"
|
|
20
20
|
},
|
|
21
21
|
"sections": {
|
|
22
22
|
"quickStart": {
|
|
23
23
|
"title": "クイックスタート",
|
|
24
|
-
"description": "5分でMCP Probe Kit v3.0.
|
|
24
|
+
"description": "5分でMCP Probe Kit v3.0.21を始める",
|
|
25
25
|
"installConfig": "インストールと設定"
|
|
26
26
|
},
|
|
27
27
|
"tools": {
|
package/docs/i18n/ko.json
CHANGED
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"hero": {
|
|
15
15
|
"title": "🚀 MCP Probe Kit",
|
|
16
16
|
"subtitle": "AI 개발 강화 툴킷 · 문서 센터",
|
|
17
|
-
"version": "v3.0.
|
|
17
|
+
"version": "v3.0.21",
|
|
18
18
|
"quickStart": "빠른 시작",
|
|
19
19
|
"visitMainSite": "ByteZoneX 방문"
|
|
20
20
|
},
|
|
21
21
|
"sections": {
|
|
22
22
|
"quickStart": {
|
|
23
23
|
"title": "빠른 시작",
|
|
24
|
-
"description": "5분 안에 MCP Probe Kit v3.0.
|
|
24
|
+
"description": "5분 안에 MCP Probe Kit v3.0.21 시작하기",
|
|
25
25
|
"installConfig": "설치 및 구성"
|
|
26
26
|
},
|
|
27
27
|
"tools": {
|
package/docs/i18n/zh-CN.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"meta": {
|
|
3
3
|
"title": "MCP Probe Kit - AI 驱动的完整研发工具集 | 28个工具覆盖开发全流程",
|
|
4
|
-
"description": "MCP Probe Kit 提供
|
|
4
|
+
"description": "MCP Probe Kit 提供 29 个 AI 驱动的研发工具,覆盖需求分析、代码开发、质量保障、Bug修复、版本发布全流程。支持 Cursor、Cline、Claude Desktop,100% 结构化输出。",
|
|
5
5
|
"keywords": "MCP Probe Kit, AI开发工具, 代码生成, 代码审查, Git工具, UI开发, 研发效率, Cursor, Cline, Claude, MCP Server"
|
|
6
6
|
},
|
|
7
7
|
"nav": {
|
|
@@ -14,19 +14,19 @@
|
|
|
14
14
|
"hero": {
|
|
15
15
|
"title": "🚀 MCP Probe Kit",
|
|
16
16
|
"subtitle": "AI 开发增强工具集 · 文档中心",
|
|
17
|
-
"version": "v3.0.
|
|
17
|
+
"version": "v3.0.21",
|
|
18
18
|
"quickStart": "快速开始",
|
|
19
19
|
"visitMainSite": "访问主站 ByteZoneX"
|
|
20
20
|
},
|
|
21
21
|
"sections": {
|
|
22
22
|
"quickStart": {
|
|
23
23
|
"title": "快速开始",
|
|
24
|
-
"description": "5 分钟快速上手 MCP Probe Kit v3.0.
|
|
24
|
+
"description": "5 分钟快速上手 MCP Probe Kit v3.0.21",
|
|
25
25
|
"installConfig": "安装配置"
|
|
26
26
|
},
|
|
27
27
|
"tools": {
|
|
28
28
|
"title": "工具文档",
|
|
29
|
-
"description": "
|
|
29
|
+
"description": "29 个实用工具的完整参考,含图谱洞察与编排工作流",
|
|
30
30
|
"allTools": "所有工具"
|
|
31
31
|
},
|
|
32
32
|
"guides": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
"gettingStarted": {
|
|
65
65
|
"title": "安装配置",
|
|
66
|
-
"subtitle": "5 分钟快速上手 MCP Probe Kit v3.0.
|
|
66
|
+
"subtitle": "5 分钟快速上手 MCP Probe Kit v3.0.21,支持 Cursor、Cline 和 Claude Desktop",
|
|
67
67
|
"breadcrumb": {
|
|
68
68
|
"home": "文档首页",
|
|
69
69
|
"quickStart": "快速开始",
|
|
@@ -353,7 +353,7 @@
|
|
|
353
353
|
"subtitle": "MCP Probe Kit 融合完整研发流程,从需求到上线的最佳实践指南",
|
|
354
354
|
"overview": {
|
|
355
355
|
"title": "完整研发流程",
|
|
356
|
-
"description": "MCP Probe Kit 的
|
|
356
|
+
"description": "MCP Probe Kit 的 29 个工具覆盖了从需求分析到代码上线的完整研发流程。以下是推荐的最佳实践。",
|
|
357
357
|
"coreIdea": "核心理念:",
|
|
358
358
|
"coreIdeaText": "通过工作流编排工具(start_*)串联整个开发流程,让 AI 成为你的研发助手。"
|
|
359
359
|
},
|
|
@@ -608,7 +608,7 @@
|
|
|
608
608
|
"resources": {
|
|
609
609
|
"title": "更多资源",
|
|
610
610
|
"allTools": "完整工具参考",
|
|
611
|
-
"allToolsDesc": "查看所有
|
|
611
|
+
"allToolsDesc": "查看所有 29 个工具的详细说明",
|
|
612
612
|
"gettingStarted": "安装配置",
|
|
613
613
|
"gettingStartedDesc": "快速开始使用",
|
|
614
614
|
"migration": "迁移指南",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Local Memory Stack (Qdrant + Nomic Embed)
|
|
2
2
|
|
|
3
|
-
This guide documents a **lightweight local setup** for mcp-probe-kit memory tools (`memorize_asset`, `read_memory_asset`, `scan_and_extract_patterns`):
|
|
3
|
+
This guide documents a **lightweight local setup** for mcp-probe-kit memory tools (`search_memory`, `memorize_asset`, `read_memory_asset`, `scan_and_extract_patterns`):
|
|
4
4
|
|
|
5
5
|
- **Qdrant** — vector database (port `50008`)
|
|
6
6
|
- **Infinity (nomic-embed)** — embedding API (port `50012`), replaces Ollama for users who want a smaller footprint
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 本地记忆栈(Qdrant + Nomic Embed)
|
|
2
2
|
|
|
3
|
-
面向 `memorize_asset`、`read_memory_asset`、`scan_and_extract_patterns` 的**轻量本机部署**说明:
|
|
3
|
+
面向 `search_memory`、`memorize_asset`、`read_memory_asset`、`scan_and_extract_patterns` 的**轻量本机部署**说明:
|
|
4
4
|
|
|
5
5
|
- **Qdrant** — 向量库(端口 `50008`)
|
|
6
6
|
- **Infinity(nomic-embed)** — 向量生成(端口 `50012`),**替代 Ollama**,对用户更轻
|
|
@@ -229,7 +229,10 @@ Swagger:`http://127.0.0.1:50012/docs`
|
|
|
229
229
|
"MEMORY_EMBEDDING_MODEL": "nomic-ai/nomic-embed-text-v1.5",
|
|
230
230
|
"MEMORY_EMBEDDING_API_KEY": "与 nomic-embed/.env 中 INFINITY_API_KEY 相同",
|
|
231
231
|
"MEMORY_SEARCH_LIMIT": "3",
|
|
232
|
-
"MEMORY_SUMMARY_MAX_CHARS": "280"
|
|
232
|
+
"MEMORY_SUMMARY_MAX_CHARS": "280",
|
|
233
|
+
"MEMORY_SEARCH_MIN_SCORE": "0",
|
|
234
|
+
"MEMORY_SEARCH_SHOW_SOURCE": "false",
|
|
235
|
+
"MEMORY_REPO_ID": ""
|
|
233
236
|
}
|
|
234
237
|
}
|
|
235
238
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>MCP Probe Kit - AI-Powered Complete Development Toolkit |
|
|
6
|
+
<title>MCP Probe Kit - AI-Powered Complete Development Toolkit | 29 Tools Covering Entire Development Lifecycle</title>
|
|
7
7
|
<meta name="i18n-title" content="meta.title">
|
|
8
8
|
|
|
9
9
|
<!-- SEO Meta Tags -->
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
<a href="./all-tools.html" class="flex items-center gap-2 px-3 py-2 rounded-md text-sm text-text-secondary hover:bg-bg-page hover:text-primary transition-colors no-underline">
|
|
100
100
|
<span>🛠️</span>
|
|
101
101
|
<span data-i18n="sidebar.allTools">All Tools</span>
|
|
102
|
-
<span class="ml-auto bg-bg-page text-xs px-2 py-0.5 rounded-full">
|
|
102
|
+
<span class="ml-auto bg-bg-page text-xs px-2 py-0.5 rounded-full">29</span>
|
|
103
103
|
</a>
|
|
104
104
|
</div>
|
|
105
105
|
|
|
@@ -250,6 +250,7 @@
|
|
|
250
250
|
<h3 class="font-semibold mb-2" data-i18n="gettingStarted.step1.memory.title">Memory System Setup (Qdrant + Embedding)</h3>
|
|
251
251
|
<p class="mb-3 text-text-secondary">
|
|
252
252
|
<span data-i18n="gettingStarted.step1.memory.descriptionPrefix">If you want to use</span>
|
|
253
|
+
<code class="bg-gray-200 px-1 rounded text-xs">search_memory</code>、
|
|
253
254
|
<code class="bg-gray-200 px-1 rounded text-xs">memorize_asset</code>、
|
|
254
255
|
<code class="bg-gray-200 px-1 rounded text-xs">read_memory_asset</code>、
|
|
255
256
|
<code class="bg-gray-200 px-1 rounded text-xs">scan_and_extract_patterns</code>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-probe-kit",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "AI-Powered Development Toolkit - MCP Server with
|
|
3
|
+
"version": "3.0.21",
|
|
4
|
+
"description": "AI-Powered Development Toolkit - MCP Server with 29 tools covering code quality, development efficiency, project management, and UI/UX design. Features: Structured Output, Workflow Orchestration, UI/UX Pro Max, and Requirements Interview.",
|
|
5
5
|
"mcpName": "io.github.mybolide/mcp-probe-kit",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "build/index.js",
|