mcp-probe-kit 3.0.22 → 3.0.24
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 +9 -11
- package/build/index.js +1 -5
- package/build/lib/__tests__/memory-injection.unit.test.js +1 -0
- package/build/lib/__tests__/memory-orchestration.unit.test.js +4 -0
- package/build/lib/memory-client.d.ts +2 -0
- package/build/lib/memory-client.js +1 -0
- package/build/lib/memory-config.d.ts +2 -0
- package/build/lib/memory-config.js +1 -0
- package/build/lib/memory-orchestration.d.ts +5 -0
- package/build/lib/memory-orchestration.js +48 -4
- package/build/schemas/index.d.ts +0 -48
- package/build/schemas/memory-tools.d.ts +0 -48
- package/build/schemas/memory-tools.js +0 -29
- package/build/tools/__tests__/cursor-history.unit.test.js +0 -49
- package/build/tools/__tests__/read_memory_asset.unit.test.d.ts +1 -0
- package/build/tools/__tests__/read_memory_asset.unit.test.js +75 -0
- package/build/tools/__tests__/search_memory.unit.test.d.ts +1 -0
- package/build/tools/__tests__/search_memory.unit.test.js +89 -0
- package/build/tools/index.d.ts +0 -2
- package/build/tools/index.js +0 -2
- package/build/tools/read_memory_asset.js +2 -1
- package/build/tools/search_memory.js +4 -2
- package/docs/data/tools.js +2 -34
- package/docs/i18n/all-tools/en.json +5 -15
- package/docs/i18n/all-tools/ja.json +3 -5
- package/docs/i18n/all-tools/ko.json +3 -5
- package/docs/i18n/all-tools/zh-CN.json +5 -15
- package/docs/i18n/en.json +10 -10
- package/docs/i18n/ja.json +9 -9
- package/docs/i18n/ko.json +9 -9
- package/docs/i18n/zh-CN.json +10 -10
- package/docs/memory-local-setup.md +1 -0
- package/docs/pages/all-tools.html +4 -4
- package/docs/pages/examples.html +2 -2
- package/docs/pages/getting-started.html +1 -1
- package/docs/pages/migration.html +2 -2
- package/package.json +2 -2
- package/build/tools/cursor_list_conversations.d.ts +0 -7
- package/build/tools/cursor_list_conversations.js +0 -35
- package/build/tools/cursor_search_conversations.d.ts +0 -7
- package/build/tools/cursor_search_conversations.js +0 -36
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { afterEach, beforeEach, describe, expect, test, vi } from 'vitest';
|
|
2
|
+
const searchMock = vi.fn();
|
|
3
|
+
const isEnabledMock = vi.fn();
|
|
4
|
+
vi.mock('../../lib/memory-client.js', () => ({
|
|
5
|
+
createMemoryClient: () => ({
|
|
6
|
+
isEnabled: isEnabledMock,
|
|
7
|
+
search: searchMock,
|
|
8
|
+
}),
|
|
9
|
+
}));
|
|
10
|
+
import { searchMemory } from '../search_memory.js';
|
|
11
|
+
import { formatSearchMemoryResultsText } from '../../lib/memory-orchestration.js';
|
|
12
|
+
beforeEach(() => {
|
|
13
|
+
isEnabledMock.mockReset();
|
|
14
|
+
searchMock.mockReset();
|
|
15
|
+
});
|
|
16
|
+
afterEach(() => {
|
|
17
|
+
vi.clearAllMocks();
|
|
18
|
+
});
|
|
19
|
+
describe('formatSearchMemoryResultsText', () => {
|
|
20
|
+
test('renders id, summary, description, content and read hint', () => {
|
|
21
|
+
const text = formatSearchMemoryResultsText([
|
|
22
|
+
{
|
|
23
|
+
id: '6c97bd10-654e-4f25-a560-99f7469dc11a',
|
|
24
|
+
score: 0.678,
|
|
25
|
+
name: 'playwright-e2e-testing-speed-pattern',
|
|
26
|
+
type: 'pattern',
|
|
27
|
+
description: 'Speed up Playwright E2E suites',
|
|
28
|
+
summary: 'Playwright E2E parallelization pattern',
|
|
29
|
+
content: 'export const parallelWorkers = 4;\n// use project-based sharding',
|
|
30
|
+
tags: ['pattern', 'e2e'],
|
|
31
|
+
},
|
|
32
|
+
]);
|
|
33
|
+
expect(text).toContain('找到 1 条相关记忆');
|
|
34
|
+
expect(text).toContain('id: 6c97bd10-654e-4f25-a560-99f7469dc11a');
|
|
35
|
+
expect(text).toContain('摘要: Playwright E2E parallelization pattern');
|
|
36
|
+
expect(text).toContain('描述: Speed up Playwright E2E suites');
|
|
37
|
+
expect(text).toContain('--- content ---');
|
|
38
|
+
expect(text).toContain('export const parallelWorkers = 4;');
|
|
39
|
+
expect(text).toContain('read_memory_asset {"asset_id": "6c97bd10-654e-4f25-a560-99f7469dc11a"}');
|
|
40
|
+
});
|
|
41
|
+
test('returns empty-state text', () => {
|
|
42
|
+
expect(formatSearchMemoryResultsText([])).toBe('未找到相关记忆');
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
describe('search_memory 单元测试', () => {
|
|
46
|
+
test('记忆服务未开启时返回跳过结果', async () => {
|
|
47
|
+
isEnabledMock.mockReturnValue(false);
|
|
48
|
+
const result = await searchMemory({ query: 'test' });
|
|
49
|
+
expect(result.isError).toBe(false);
|
|
50
|
+
expect('structuredContent' in result).toBe(true);
|
|
51
|
+
if (!('structuredContent' in result)) {
|
|
52
|
+
throw new Error('structuredContent 缺失');
|
|
53
|
+
}
|
|
54
|
+
expect(result.content[0].text).toContain('记忆服务未开启');
|
|
55
|
+
expect(result.structuredContent).toEqual({ enabled: false, results: [] });
|
|
56
|
+
expect(searchMock).not.toHaveBeenCalled();
|
|
57
|
+
});
|
|
58
|
+
test('命中结果时文本输出包含 asset 字段', async () => {
|
|
59
|
+
isEnabledMock.mockReturnValue(true);
|
|
60
|
+
searchMock.mockResolvedValue([
|
|
61
|
+
{
|
|
62
|
+
id: 'asset-1',
|
|
63
|
+
score: 0.88,
|
|
64
|
+
name: 'feishu-proxy-bug',
|
|
65
|
+
type: 'bugfix',
|
|
66
|
+
description: 'Feishu proxy mismatch',
|
|
67
|
+
summary: 'proxy caused 400 on HTTPS',
|
|
68
|
+
content: '【现象】HTTPS 400\n【修复】修正 proxy 配置',
|
|
69
|
+
tags: ['bugfix', 'proxy'],
|
|
70
|
+
},
|
|
71
|
+
]);
|
|
72
|
+
const result = await searchMemory({ query: 'proxy', limit: 1 });
|
|
73
|
+
expect(result.isError).toBe(false);
|
|
74
|
+
expect('structuredContent' in result).toBe(true);
|
|
75
|
+
if (!('structuredContent' in result)) {
|
|
76
|
+
throw new Error('structuredContent 缺失');
|
|
77
|
+
}
|
|
78
|
+
expect(result.content[0].text).toContain('id: asset-1');
|
|
79
|
+
expect(result.content[0].text).toContain('摘要: proxy caused 400 on HTTPS');
|
|
80
|
+
expect(result.content[0].text).toContain('描述: Feishu proxy mismatch');
|
|
81
|
+
expect(result.content[0].text).toContain('--- content ---');
|
|
82
|
+
expect(result.content[0].text).toContain('【修复】修正 proxy 配置');
|
|
83
|
+
expect(result.structuredContent.results[0]).toEqual(expect.objectContaining({
|
|
84
|
+
id: 'asset-1',
|
|
85
|
+
description: 'Feishu proxy mismatch',
|
|
86
|
+
summary: 'proxy caused 400 on HTTPS',
|
|
87
|
+
}));
|
|
88
|
+
});
|
|
89
|
+
});
|
package/build/tools/index.d.ts
CHANGED
|
@@ -20,8 +20,6 @@ export { searchMemory } from "./search_memory.js";
|
|
|
20
20
|
export { readMemoryAsset } from "./read_memory_asset.js";
|
|
21
21
|
export { memorizeAsset } from "./memorize_asset.js";
|
|
22
22
|
export { scanAndExtractPatterns } from "./scan_and_extract_patterns.js";
|
|
23
|
-
export { cursorListConversations } from "./cursor_list_conversations.js";
|
|
24
|
-
export { cursorSearchConversations } from "./cursor_search_conversations.js";
|
|
25
23
|
export { cursorReadConversation } from "./cursor_read_conversation.js";
|
|
26
24
|
export { startProduct } from "./start_product.js";
|
|
27
25
|
export { gitWorkReport } from "./git_work_report.js";
|
package/build/tools/index.js
CHANGED
|
@@ -24,8 +24,6 @@ export { searchMemory } from "./search_memory.js";
|
|
|
24
24
|
export { readMemoryAsset } from "./read_memory_asset.js";
|
|
25
25
|
export { memorizeAsset } from "./memorize_asset.js";
|
|
26
26
|
export { scanAndExtractPatterns } from "./scan_and_extract_patterns.js";
|
|
27
|
-
export { cursorListConversations } from "./cursor_list_conversations.js";
|
|
28
|
-
export { cursorSearchConversations } from "./cursor_search_conversations.js";
|
|
29
27
|
export { cursorReadConversation } from "./cursor_read_conversation.js";
|
|
30
28
|
// 产品设计工作流
|
|
31
29
|
export { startProduct } from "./start_product.js";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { okStructured } from '../lib/response.js';
|
|
2
2
|
import { createMemoryClient } from '../lib/memory-client.js';
|
|
3
|
+
import { formatReadMemoryAssetText } from '../lib/memory-orchestration.js';
|
|
3
4
|
import { handleToolError } from '../utils/error-handler.js';
|
|
4
5
|
export async function readMemoryAsset(args) {
|
|
5
6
|
try {
|
|
@@ -15,7 +16,7 @@ export async function readMemoryAsset(args) {
|
|
|
15
16
|
if (!asset) {
|
|
16
17
|
return okStructured(`未找到记忆资产: ${assetId}`, { enabled: true, asset: null });
|
|
17
18
|
}
|
|
18
|
-
return okStructured(
|
|
19
|
+
return okStructured(formatReadMemoryAssetText(asset), {
|
|
19
20
|
enabled: true,
|
|
20
21
|
asset,
|
|
21
22
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { parseArgs, getString, getNumber } from '../utils/parseArgs.js';
|
|
2
2
|
import { okStructured } from '../lib/response.js';
|
|
3
3
|
import { createMemoryClient } from '../lib/memory-client.js';
|
|
4
|
-
import { shouldShowSourceInSearch } from '../lib/memory-orchestration.js';
|
|
4
|
+
import { formatSearchMemoryResultsText, shouldShowSourceInSearch, } from '../lib/memory-orchestration.js';
|
|
5
5
|
import { getMemoryConfig } from '../lib/memory-config.js';
|
|
6
6
|
import { handleToolError } from '../utils/error-handler.js';
|
|
7
7
|
export async function searchMemory(args) {
|
|
@@ -40,11 +40,13 @@ export async function searchMemory(args) {
|
|
|
40
40
|
score: item.score,
|
|
41
41
|
name: item.name,
|
|
42
42
|
type: item.type,
|
|
43
|
+
description: item.description,
|
|
43
44
|
summary: item.summary,
|
|
45
|
+
content: item.content,
|
|
44
46
|
tags: item.tags,
|
|
45
47
|
sourcePath: shouldShowSourceInSearch(item, config) ? item.sourcePath : undefined,
|
|
46
48
|
}));
|
|
47
|
-
return okStructured(results
|
|
49
|
+
return okStructured(formatSearchMemoryResultsText(results, config), {
|
|
48
50
|
enabled: true,
|
|
49
51
|
query,
|
|
50
52
|
count: results.length,
|
package/docs/data/tools.js
CHANGED
|
@@ -412,7 +412,7 @@ verbose: true`
|
|
|
412
412
|
{ name: 'tags', type: 'array', required: false, desc: '优先匹配的标签' },
|
|
413
413
|
{ name: 'limit', type: 'number', required: false, desc: '返回条数' }
|
|
414
414
|
],
|
|
415
|
-
usage: '在 start_* 之外主动查找历史 Bug
|
|
415
|
+
usage: '在 start_* 之外主动查找历史 Bug 修复或可复用模式;文本含 id/score/摘要/描述及 --- content --- 正文(默认最多 1500 字,可用 MEMORY_SEARCH_CONTENT_MAX_CHARS 调整)',
|
|
416
416
|
example: `// 使用示例
|
|
417
417
|
你: 请使用 search_memory 搜索 proxy 相关 bugfix
|
|
418
418
|
|
|
@@ -427,7 +427,7 @@ limit: 5`
|
|
|
427
427
|
params: [
|
|
428
428
|
{ name: 'asset_id', type: 'string', required: true, desc: '资产唯一 ID' }
|
|
429
429
|
],
|
|
430
|
-
usage: '当工作流或搜索结果已经找到 memory
|
|
430
|
+
usage: '当工作流或搜索结果已经找到 memory 摘要后,用它读取完整可复用资产;文本输出含 --- content --- 全文与 structuredContent.asset',
|
|
431
431
|
example: `// 使用示例
|
|
432
432
|
你: 请使用 read_memory_asset 工具读取资产
|
|
433
433
|
|
|
@@ -466,38 +466,6 @@ kind: "pattern"`
|
|
|
466
466
|
|
|
467
467
|
path: "src/auth"
|
|
468
468
|
max_patterns: 5`
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
name: 'cursor_list_conversations',
|
|
472
|
-
description: '读取本地 Cursor 对话摘要,支持按标题或工作区过滤',
|
|
473
|
-
schema: 'CursorConversationListSchema',
|
|
474
|
-
params: [
|
|
475
|
-
{ name: 'workspace', type: 'string', required: false, desc: '工作区路径过滤' },
|
|
476
|
-
{ name: 'query', type: 'string', required: false, desc: '标题或摘要关键词' },
|
|
477
|
-
{ name: 'limit', type: 'number', required: false, desc: '返回数量,默认 20' }
|
|
478
|
-
],
|
|
479
|
-
usage: '用于恢复历史工作,快速定位某个工作区下最近的 Cursor 对话',
|
|
480
|
-
example: `// 使用示例
|
|
481
|
-
你: 请使用 cursor_list_conversations 工具列出最近对话
|
|
482
|
-
|
|
483
|
-
workspace: "e:/workspace/github/mcp-probe-kit"
|
|
484
|
-
limit: 10`
|
|
485
|
-
},
|
|
486
|
-
{
|
|
487
|
-
name: 'cursor_search_conversations',
|
|
488
|
-
description: '按关键词或 request id 搜索本地 Cursor 历史消息',
|
|
489
|
-
schema: 'CursorConversationSearchSchema',
|
|
490
|
-
params: [
|
|
491
|
-
{ name: 'query', type: 'string', required: true, desc: '关键词、日志片段或 request id' },
|
|
492
|
-
{ name: 'workspace', type: 'string', required: false, desc: '工作区路径过滤' },
|
|
493
|
-
{ name: 'limit', type: 'number', required: false, desc: '返回数量,默认 20' }
|
|
494
|
-
],
|
|
495
|
-
usage: '适合按日志片段、问题关键词或 request id 追溯历史证据',
|
|
496
|
-
example: `// 使用示例
|
|
497
|
-
你: 请使用 cursor_search_conversations 工具搜索历史记录
|
|
498
|
-
|
|
499
|
-
query: "GitNexus"
|
|
500
|
-
limit: 10`
|
|
501
469
|
},
|
|
502
470
|
{
|
|
503
471
|
name: 'cursor_read_conversation',
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"meta": {
|
|
3
|
-
"title": "All Tools - Complete List of
|
|
4
|
-
"description": "MCP Probe Kit complete tool list: 6 workflow orchestration tools, 4 code analysis tools, 2 Git tools, 1 generation tool, 6 project management tools, 3 UI/UX tools, and
|
|
3
|
+
"title": "All Tools - Complete List of 27 AI Development Tools | MCP Probe Kit",
|
|
4
|
+
"description": "MCP Probe Kit complete tool list: 6 workflow orchestration tools, 4 code analysis tools, 2 Git tools, 1 generation tool, 6 project management tools, 3 UI/UX tools, and 5 memory/Cursor history tools.",
|
|
5
5
|
"keywords": "AI development tools, code generation tools, code review tools, Git automation, UI generation, code refactoring, performance optimization, security scanning"
|
|
6
6
|
},
|
|
7
7
|
"page": {
|
|
8
|
-
"subtitle": "MCP Probe Kit provides
|
|
8
|
+
"subtitle": "MCP Probe Kit provides 27 practical tools with structured output support for core and orchestration tools"
|
|
9
9
|
},
|
|
10
10
|
"search": {
|
|
11
11
|
"placeholder": "🔍 Search tool name or description...",
|
|
@@ -45,8 +45,6 @@
|
|
|
45
45
|
"read_memory_asset": "Read Memory",
|
|
46
46
|
"memorize_asset": "Store Memory",
|
|
47
47
|
"scan_and_extract_patterns": "Extract Patterns",
|
|
48
|
-
"cursor_list_conversations": "List Chats",
|
|
49
|
-
"cursor_search_conversations": "Search Chats",
|
|
50
48
|
"cursor_read_conversation": "Read Chat"
|
|
51
49
|
},
|
|
52
50
|
"categories": {
|
|
@@ -170,11 +168,11 @@
|
|
|
170
168
|
},
|
|
171
169
|
"search_memory": {
|
|
172
170
|
"description": "Semantic search across the shared memory pool, with optional type/tags preference",
|
|
173
|
-
"usage": "Use outside start_* to find historical bugfixes or patterns;
|
|
171
|
+
"usage": "Use outside start_* to find historical bugfixes or patterns; text output includes id/score/summary/description and a --- content --- body (default 1500 chars; use read_memory_asset for unlimited full text)"
|
|
174
172
|
},
|
|
175
173
|
"read_memory_asset": {
|
|
176
174
|
"description": "Read the full content and metadata of a stored memory asset by asset ID",
|
|
177
|
-
"usage": "Use
|
|
175
|
+
"usage": "Use after search_memory or orchestration hits; text output includes the full --- content --- body plus structuredContent.asset"
|
|
178
176
|
},
|
|
179
177
|
"memorize_asset": {
|
|
180
178
|
"description": "Persist high-value code, spec, or pattern assets into the vector memory system for later reuse",
|
|
@@ -184,14 +182,6 @@
|
|
|
184
182
|
"description": "Extract reusable patterns from a code snippet, file, or directory before deciding whether to store them into memory",
|
|
185
183
|
"usage": "Use for pattern mining first, then optionally follow with memorize_asset to persist the best candidates"
|
|
186
184
|
},
|
|
187
|
-
"cursor_list_conversations": {
|
|
188
|
-
"description": "Read local Cursor conversation summaries, with optional filtering by title or workspace",
|
|
189
|
-
"usage": "Useful for resuming previous work and locating recent conversations in a specific workspace"
|
|
190
|
-
},
|
|
191
|
-
"cursor_search_conversations": {
|
|
192
|
-
"description": "Search local Cursor history messages by keyword or request id",
|
|
193
|
-
"usage": "Useful for tracing prior evidence by log snippet, issue keyword, or request id"
|
|
194
|
-
},
|
|
195
185
|
"cursor_read_conversation": {
|
|
196
186
|
"description": "Read the full local Cursor conversation timeline for a single composer_id",
|
|
197
187
|
"usage": "Useful for precisely resuming a specific historical conversation and reviewing message order and context"
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"meta": {
|
|
3
|
-
"title": "すべてのツール -
|
|
4
|
-
"description": "MCP Probe Kit 完全ツールリスト:6個のワークフローオーケストレーションツール、4個のコード分析ツール、2個のGitツール、1個の生成ツール、6個のプロジェクト管理ツール、3個のUI/UXツール、
|
|
3
|
+
"title": "すべてのツール - 27個のAI開発ツール完全リスト | MCP Probe Kit",
|
|
4
|
+
"description": "MCP Probe Kit 完全ツールリスト:6個のワークフローオーケストレーションツール、4個のコード分析ツール、2個のGitツール、1個の生成ツール、6個のプロジェクト管理ツール、3個のUI/UXツール、5個の Memory / Cursor History ツール。",
|
|
5
5
|
"keywords": "AI開発ツール, コード生成ツール, コードレビューツール, Git自動化, UI生成, コードリファクタリング, パフォーマンス最適化, セキュリティスキャン"
|
|
6
6
|
},
|
|
7
7
|
"page": {
|
|
8
|
-
"subtitle": "MCP Probe Kitは
|
|
8
|
+
"subtitle": "MCP Probe Kitは27個の実用的なツールを提供し、コアおよびオーケストレーションツールは構造化出力をサポートします"
|
|
9
9
|
},
|
|
10
10
|
"search": {
|
|
11
11
|
"placeholder": "🔍 ツール名または説明を検索...",
|
|
@@ -46,8 +46,6 @@
|
|
|
46
46
|
"read_memory_asset": "メモリ読取",
|
|
47
47
|
"memorize_asset": "メモリ保存",
|
|
48
48
|
"scan_and_extract_patterns": "パターン抽出",
|
|
49
|
-
"cursor_list_conversations": "会話一覧",
|
|
50
|
-
"cursor_search_conversations": "会話検索",
|
|
51
49
|
"cursor_read_conversation": "会話読取"
|
|
52
50
|
},
|
|
53
51
|
"categories": {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"meta": {
|
|
3
|
-
"title": "모든 도구 -
|
|
4
|
-
"description": "MCP Probe Kit 전체 도구 목록: 6개의 워크플로우 오케스트레이션 도구, 4개의 코드 분석 도구, 2개의 Git 도구, 1개의 생성 도구, 6개의 프로젝트 관리 도구, 3개의 UI/UX 도구.",
|
|
3
|
+
"title": "모든 도구 - 27개 AI 개발 도구 전체 목록 | MCP Probe Kit",
|
|
4
|
+
"description": "MCP Probe Kit 전체 도구 목록: 6개의 워크플로우 오케스트레이션 도구, 4개의 코드 분석 도구, 2개의 Git 도구, 1개의 생성 도구, 6개의 프로젝트 관리 도구, 3개의 UI/UX 도구, 5개의 Memory/Cursor History 도구.",
|
|
5
5
|
"keywords": "AI 개발 도구, 코드 생성 도구, 코드 리뷰 도구, Git 자동화, UI 생성, 코드 리팩토링, 성능 최적화, 보안 스캔"
|
|
6
6
|
},
|
|
7
7
|
"page": {
|
|
8
|
-
"subtitle": "MCP Probe Kit은
|
|
8
|
+
"subtitle": "MCP Probe Kit은 27개의 실용적인 도구를 제공하며, 핵심 및 오케스트레이션 도구는 구조화된 출력을 지원합니다"
|
|
9
9
|
},
|
|
10
10
|
"search": {
|
|
11
11
|
"placeholder": "🔍 도구 이름 또는 설명 검색...",
|
|
@@ -46,8 +46,6 @@
|
|
|
46
46
|
"read_memory_asset": "메모리 읽기",
|
|
47
47
|
"memorize_asset": "메모리 저장",
|
|
48
48
|
"scan_and_extract_patterns": "패턴 추출",
|
|
49
|
-
"cursor_list_conversations": "대화 목록",
|
|
50
|
-
"cursor_search_conversations": "대화 검색",
|
|
51
49
|
"cursor_read_conversation": "대화 읽기"
|
|
52
50
|
},
|
|
53
51
|
"categories": {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"meta": {
|
|
3
|
-
"title": "所有工具 -
|
|
4
|
-
"description": "MCP Probe Kit 完整工具列表:6个工作流编排工具、4个代码分析工具、2个Git工具、1个生成工具、6个项目管理工具、3个UI/UX工具、
|
|
3
|
+
"title": "所有工具 - 27个AI研发工具完整列表 | MCP Probe Kit",
|
|
4
|
+
"description": "MCP Probe Kit 完整工具列表:6个工作流编排工具、4个代码分析工具、2个Git工具、1个生成工具、6个项目管理工具、3个UI/UX工具、5个记忆与 Cursor 历史工具。",
|
|
5
5
|
"keywords": "AI 开发工具, 代码生成工具, 代码审查工具, Git 自动化, UI 生成, 代码重构, 性能优化, 安全扫描"
|
|
6
6
|
},
|
|
7
7
|
"page": {
|
|
8
|
-
"subtitle": "MCP Probe Kit 提供
|
|
8
|
+
"subtitle": "MCP Probe Kit 提供 27 个实用工具,核心与编排工具支持结构化输出"
|
|
9
9
|
},
|
|
10
10
|
"search": {
|
|
11
11
|
"placeholder": "🔍 搜索工具名称或描述...",
|
|
@@ -45,8 +45,6 @@
|
|
|
45
45
|
"read_memory_asset": "读取记忆",
|
|
46
46
|
"memorize_asset": "沉淀记忆",
|
|
47
47
|
"scan_and_extract_patterns": "抽取模式",
|
|
48
|
-
"cursor_list_conversations": "列会话",
|
|
49
|
-
"cursor_search_conversations": "搜会话",
|
|
50
48
|
"cursor_read_conversation": "读会话"
|
|
51
49
|
},
|
|
52
50
|
"categories": {
|
|
@@ -170,11 +168,11 @@
|
|
|
170
168
|
},
|
|
171
169
|
"search_memory": {
|
|
172
170
|
"description": "按语义检索共享记忆库,支持 type/tags 优先排序",
|
|
173
|
-
"usage": "在 start_* 之外主动查找历史 Bug
|
|
171
|
+
"usage": "在 start_* 之外主动查找历史 Bug 修复或可复用模式;文本输出含 id/score/摘要/描述及 --- content --- 正文(默认最多 1500 字,更长全文用 read_memory_asset)"
|
|
174
172
|
},
|
|
175
173
|
"read_memory_asset": {
|
|
176
174
|
"description": "按资产 ID 读取已沉淀记忆的完整内容与元数据",
|
|
177
|
-
"usage": "
|
|
175
|
+
"usage": "当编排阶段已经命中记忆摘要时使用;文本输出含 --- content --- 全文(代码/配置/详细描述)"
|
|
178
176
|
},
|
|
179
177
|
"memorize_asset": {
|
|
180
178
|
"description": "把高价值代码、规范或模式写入向量记忆系统,供后续复用",
|
|
@@ -184,14 +182,6 @@
|
|
|
184
182
|
"description": "从单段代码、单文件或整个目录中抽取可复用模式,再决定是否沉淀到记忆系统",
|
|
185
183
|
"usage": "适合先做模式归纳,再按需调用 memorize_asset 写入记忆"
|
|
186
184
|
},
|
|
187
|
-
"cursor_list_conversations": {
|
|
188
|
-
"description": "读取 Cursor 本地历史会话摘要,可按标题或工作区过滤最近会话",
|
|
189
|
-
"usage": "用于恢复旧上下文、定位某个工作区最近做过的会话"
|
|
190
|
-
},
|
|
191
|
-
"cursor_search_conversations": {
|
|
192
|
-
"description": "在 Cursor 本地历史消息里按关键词或 request id 搜索命中内容",
|
|
193
|
-
"usage": "用于按问题、日志片段、request id 回溯过往会话证据"
|
|
194
|
-
},
|
|
195
185
|
"cursor_read_conversation": {
|
|
196
186
|
"description": "按 composer_id 读取一条 Cursor 本地会话的完整消息时间线",
|
|
197
187
|
"usage": "用于精确续接某一条历史会话,查看消息顺序、上下文和关键输出"
|
package/docs/i18n/en.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"meta": {
|
|
3
|
-
"title": "MCP Probe Kit - AI-Powered Complete Development Toolkit |
|
|
4
|
-
"description": "MCP Probe Kit provides
|
|
3
|
+
"title": "MCP Probe Kit - AI-Powered Complete Development Toolkit | 27 Tools Covering Entire Development Lifecycle",
|
|
4
|
+
"description": "MCP Probe Kit provides 27 AI-powered development tools covering requirements analysis, code development, quality assurance, bug fixing, and release management. Supports Cursor, Cline, Claude Desktop with 100% structured output.",
|
|
5
5
|
"keywords": "MCP Probe Kit, AI development tools, code generation, code review, Git tools, UI development, development efficiency, 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 Development Enhancement Toolkit · Documentation Center",
|
|
17
|
-
"version": "v3.0.
|
|
17
|
+
"version": "v3.0.24",
|
|
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.24 in 5 minutes",
|
|
25
25
|
"installConfig": "Installation & Configuration"
|
|
26
26
|
},
|
|
27
27
|
"tools": {
|
|
28
28
|
"title": "Tools Documentation",
|
|
29
|
-
"description": "Complete reference for
|
|
29
|
+
"description": "Complete reference for 27 practical tools, including code graph insight and orchestration workflows",
|
|
30
30
|
"allTools": "All Tools"
|
|
31
31
|
},
|
|
32
32
|
"guides": {
|
|
@@ -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.24 in 5 minutes. Supports Cursor, Cline, and Claude Desktop",
|
|
67
67
|
"breadcrumb": {
|
|
68
68
|
"home": "Documentation",
|
|
69
69
|
"quickStart": "Quick Start",
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
"subtitle": "Smoothly migrate from v2.x to v3.0, understand breaking changes and new features",
|
|
274
274
|
"overview": {
|
|
275
275
|
"title": "Overview",
|
|
276
|
-
"description": "MCP Probe Kit v3.0 is a major version update, streamlined to
|
|
276
|
+
"description": "MCP Probe Kit v3.0 is a major version update, streamlined to 27 tools, bringing more powerful features and better development experience.",
|
|
277
277
|
"migrationTime": "Migration Time:",
|
|
278
278
|
"migrationTimeText": "Most projects can complete migration in 10-15 minutes, v2.x core tools remain compatible in v3.0."
|
|
279
279
|
},
|
|
@@ -281,7 +281,7 @@
|
|
|
281
281
|
"title": "Major Changes",
|
|
282
282
|
"toolsOptimization": {
|
|
283
283
|
"title": "1. Tools Streamlining",
|
|
284
|
-
"description": "v2.x: 39 tools → v3.x:
|
|
284
|
+
"description": "v2.x: 39 tools → v3.x: 27 tools (removed low-frequency tools, kept high-value tools)"
|
|
285
285
|
},
|
|
286
286
|
"workflows": {
|
|
287
287
|
"title": "2. New Workflow Orchestration",
|
|
@@ -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 27 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 27 tools",
|
|
612
612
|
"gettingStarted": "Installation & Configuration",
|
|
613
613
|
"gettingStartedDesc": "Quick start guide",
|
|
614
614
|
"migration": "Migration Guide",
|
package/docs/i18n/ja.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"meta": {
|
|
3
|
-
"title": "MCP Probe Kit - AI駆動の完全開発ツールキット | 開発ライフサイクル全体をカバーする
|
|
4
|
-
"description": "MCP Probe Kitは、要件分析、コード開発、品質保証、バグ修正、リリース管理をカバーする
|
|
3
|
+
"title": "MCP Probe Kit - AI駆動の完全開発ツールキット | 開発ライフサイクル全体をカバーする27のツール",
|
|
4
|
+
"description": "MCP Probe Kitは、要件分析、コード開発、品質保証、バグ修正、リリース管理をカバーする27のAI駆動開発ツールを提供します。Cursor、Cline、Claude Desktopをサポートし、100%構造化出力を実現。",
|
|
5
5
|
"keywords": "MCP Probe Kit, AI開発ツール, コード生成, コードレビュー, Gitツール, UI開発, 開発効率, Cursor, Cline, Claude, MCPサーバー"
|
|
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.24",
|
|
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.24を始める",
|
|
25
25
|
"installConfig": "インストールと設定"
|
|
26
26
|
},
|
|
27
27
|
"tools": {
|
|
28
28
|
"title": "ツールドキュメント",
|
|
29
|
-
"description": "
|
|
29
|
+
"description": "27の実用的なツールの完全なリファレンス。コードグラフ洞察とオーケストレーションを含む",
|
|
30
30
|
"allTools": "すべてのツール"
|
|
31
31
|
},
|
|
32
32
|
"guides": {
|
|
@@ -249,7 +249,7 @@
|
|
|
249
249
|
"subtitle": "v2.xからv3.0へスムーズに移行し、重大な変更と新機能を理解する",
|
|
250
250
|
"overview": {
|
|
251
251
|
"title": "概要",
|
|
252
|
-
"description": "MCP Probe Kit v3.0は大規模なバージョンアップデートで、
|
|
252
|
+
"description": "MCP Probe Kit v3.0は大規模なバージョンアップデートで、27ツールに最適化され、より強力な機能とより良い開発体験をもたらします。",
|
|
253
253
|
"migrationTime": "移行時間:",
|
|
254
254
|
"migrationTimeText": "ほとんどのプロジェクトは10〜15分で移行を完了でき、v2.xのコアツールはv3.0で互換性を維持しています。"
|
|
255
255
|
},
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"title": "主な変更点",
|
|
258
258
|
"toolsOptimization": {
|
|
259
259
|
"title": "1. ツールの最適化",
|
|
260
|
-
"description": "v2.x: 39ツール → v3.x:
|
|
260
|
+
"description": "v2.x: 39ツール → v3.x: 27ツール(低頻度ツールを削除、高価値ツールを保持)"
|
|
261
261
|
},
|
|
262
262
|
"workflows": {
|
|
263
263
|
"title": "2. 新しいワークフローオーケストレーション",
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"subtitle": "MCP Probe Kitは完全な開発プロセスを統合、要件からデプロイまでのベストプラクティスガイド",
|
|
330
330
|
"overview": {
|
|
331
331
|
"title": "完全な開発プロセス",
|
|
332
|
-
"description": "MCP Probe Kitの
|
|
332
|
+
"description": "MCP Probe Kitの27のツールは、要件分析からコードデプロイまでの完全な開発プロセスをカバーしています。以下は推奨されるベストプラクティスです。",
|
|
333
333
|
"coreIdea": "コア哲学:",
|
|
334
334
|
"coreIdeaText": "ワークフローオーケストレーションツール(start_*)を通じて開発プロセス全体を連携し、AIを開発アシスタントにします。"
|
|
335
335
|
},
|
|
@@ -584,7 +584,7 @@
|
|
|
584
584
|
"resources": {
|
|
585
585
|
"title": "その他のリソース",
|
|
586
586
|
"allTools": "完全なツールリファレンス",
|
|
587
|
-
"allToolsDesc": "全
|
|
587
|
+
"allToolsDesc": "全27ツールの詳細説明を表示",
|
|
588
588
|
"gettingStarted": "インストールと設定",
|
|
589
589
|
"gettingStartedDesc": "クイックスタートガイド",
|
|
590
590
|
"migration": "移行ガイド",
|
package/docs/i18n/ko.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"meta": {
|
|
3
|
-
"title": "MCP Probe Kit - AI 기반 완전한 개발 툴킷 | 전체 개발 라이프사이클을 커버하는
|
|
4
|
-
"description": "MCP Probe Kit은 요구사항 분석, 코드 개발, 품질 보증, 버그 수정, 릴리스 관리를 커버하는
|
|
3
|
+
"title": "MCP Probe Kit - AI 기반 완전한 개발 툴킷 | 전체 개발 라이프사이클을 커버하는 27개 도구",
|
|
4
|
+
"description": "MCP Probe Kit은 요구사항 분석, 코드 개발, 품질 보증, 버그 수정, 릴리스 관리를 커버하는 27개의 AI 기반 개발 도구를 제공합니다. Cursor, Cline, Claude Desktop을 지원하며 100% 구조화된 출력을 제공합니다.",
|
|
5
5
|
"keywords": "MCP Probe Kit, AI 개발 도구, 코드 생성, 코드 리뷰, Git 도구, UI 개발, 개발 효율성, Cursor, Cline, Claude, MCP 서버"
|
|
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.24",
|
|
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.24 시작하기",
|
|
25
25
|
"installConfig": "설치 및 구성"
|
|
26
26
|
},
|
|
27
27
|
"tools": {
|
|
28
28
|
"title": "도구 문서",
|
|
29
|
-
"description": "
|
|
29
|
+
"description": "27개 실용 도구의 완전한 참조. 코드 그래프 인사이트와 오케스트레이션 포함",
|
|
30
30
|
"allTools": "모든 도구"
|
|
31
31
|
},
|
|
32
32
|
"guides": {
|
|
@@ -249,7 +249,7 @@
|
|
|
249
249
|
"subtitle": "v2.x에서 v3.0으로 원활하게 마이그레이션하고 주요 변경 사항 및 새로운 기능 이해",
|
|
250
250
|
"overview": {
|
|
251
251
|
"title": "개요",
|
|
252
|
-
"description": "MCP Probe Kit v3.0은 주요 버전 업데이트로,
|
|
252
|
+
"description": "MCP Probe Kit v3.0은 주요 버전 업데이트로, 27개 도구로 최적화되어 더 강력한 기능과 더 나은 개발 경험을 제공합니다.",
|
|
253
253
|
"migrationTime": "마이그레이션 시간:",
|
|
254
254
|
"migrationTimeText": "대부분의 프로젝트는 10-15분 내에 마이그레이션을 완료할 수 있으며, v2.x의 핵심 도구는 v3.0에서 호환성을 유지합니다."
|
|
255
255
|
},
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"title": "주요 변경 사항",
|
|
258
258
|
"toolsOptimization": {
|
|
259
259
|
"title": "1. 도구 최적화",
|
|
260
|
-
"description": "v2.x: 39개 도구 → v3.x:
|
|
260
|
+
"description": "v2.x: 39개 도구 → v3.x: 27개 도구 (저빈도 도구 제거, 고가치 도구 유지)"
|
|
261
261
|
},
|
|
262
262
|
"workflows": {
|
|
263
263
|
"title": "2. 새로운 워크플로 오케스트레이션",
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"subtitle": "MCP Probe Kit은 완전한 개발 프로세스를 통합, 요구사항부터 배포까지의 모범 사례 가이드",
|
|
330
330
|
"overview": {
|
|
331
331
|
"title": "완전한 개발 프로세스",
|
|
332
|
-
"description": "MCP Probe Kit의
|
|
332
|
+
"description": "MCP Probe Kit의 27개 도구는 요구사항 분석부터 코드 배포까지의 완전한 개발 프로세스를 커버합니다. 다음은 권장되는 모범 사례입니다.",
|
|
333
333
|
"coreIdea": "핵심 철학:",
|
|
334
334
|
"coreIdeaText": "워크플로 오케스트레이션 도구(start_*)를 통해 전체 개발 프로세스를 연결하여 AI를 개발 어시스턴트로 만듭니다."
|
|
335
335
|
},
|
|
@@ -584,7 +584,7 @@
|
|
|
584
584
|
"resources": {
|
|
585
585
|
"title": "추가 리소스",
|
|
586
586
|
"allTools": "완전한 도구 참조",
|
|
587
|
-
"allToolsDesc": "모든
|
|
587
|
+
"allToolsDesc": "모든 27개 도구의 자세한 설명 보기",
|
|
588
588
|
"gettingStarted": "설치 및 구성",
|
|
589
589
|
"gettingStartedDesc": "빠른 시작 가이드",
|
|
590
590
|
"migration": "마이그레이션 가이드",
|