mcp-probe-kit 3.0.15 → 3.0.17
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 +618 -410
- package/build/index.js +13 -1
- package/build/lib/__tests__/memory-client.unit.test.d.ts +1 -0
- package/build/lib/__tests__/memory-client.unit.test.js +83 -0
- package/build/lib/__tests__/memory-config.unit.test.d.ts +1 -0
- package/build/lib/__tests__/memory-config.unit.test.js +33 -0
- package/build/lib/cursor-history-client.d.ts +54 -0
- package/build/lib/cursor-history-client.js +240 -0
- package/build/lib/gitnexus-bridge.js +6 -8
- package/build/lib/memory-client.d.ts +61 -0
- package/build/lib/memory-client.js +293 -0
- package/build/lib/memory-config.d.ts +14 -0
- package/build/lib/memory-config.js +31 -0
- package/build/lib/memory-orchestration.d.ts +26 -0
- package/build/lib/memory-orchestration.js +65 -0
- package/build/lib/project-detector.js +6 -4
- package/build/lib/skill-bridge.d.ts +31 -0
- package/build/lib/skill-bridge.js +100 -0
- package/build/lib/workspace-root.d.ts +12 -0
- package/build/lib/workspace-root.js +153 -0
- package/build/resources/ui-ux-data/charts.json +302 -0
- package/build/resources/ui-ux-data/colors.json +1058 -0
- package/build/resources/ui-ux-data/icons.json +1102 -0
- package/build/resources/ui-ux-data/landing.json +262 -0
- package/build/resources/ui-ux-data/metadata.json +6 -0
- package/build/resources/ui-ux-data/products.json +1058 -0
- package/build/resources/ui-ux-data/react-performance.json +574 -0
- package/build/resources/ui-ux-data/stacks/astro.json +266 -0
- package/build/resources/ui-ux-data/stacks/flutter.json +626 -0
- package/build/resources/ui-ux-data/stacks/html-tailwind.json +662 -0
- package/build/resources/ui-ux-data/stacks/jetpack-compose.json +626 -0
- package/build/resources/ui-ux-data/stacks/nextjs.json +218 -0
- package/build/resources/ui-ux-data/stacks/nuxt-ui.json +14 -0
- package/build/resources/ui-ux-data/stacks/nuxtjs.json +182 -0
- package/build/resources/ui-ux-data/stacks/react-native.json +350 -0
- package/build/resources/ui-ux-data/stacks/react.json +530 -0
- package/build/resources/ui-ux-data/stacks/shadcn.json +566 -0
- package/build/resources/ui-ux-data/stacks/svelte.json +134 -0
- package/build/resources/ui-ux-data/stacks/swiftui.json +26 -0
- package/build/resources/ui-ux-data/stacks/vue.json +170 -0
- package/build/resources/ui-ux-data/styles.json +1610 -0
- package/build/resources/ui-ux-data/typography.json +743 -0
- package/build/resources/ui-ux-data/ui-reasoning.json +1431 -0
- package/build/resources/ui-ux-data/ux-guidelines.json +1190 -0
- package/build/resources/ui-ux-data/web-interface.json +389 -0
- package/build/schemas/code-analysis-tools.d.ts +1 -1
- package/build/schemas/code-analysis-tools.js +1 -1
- package/build/schemas/index.d.ts +198 -4
- package/build/schemas/index.js +2 -0
- package/build/schemas/memory-tools.d.ts +191 -0
- package/build/schemas/memory-tools.js +106 -0
- package/build/schemas/orchestration-tools.d.ts +3 -3
- package/build/schemas/orchestration-tools.js +3 -3
- package/build/schemas/ui-ux-schemas.d.ts +8 -0
- package/build/schemas/ui-ux-schemas.js +5 -1
- package/build/tools/__tests__/cursor-history.unit.test.d.ts +1 -0
- package/build/tools/__tests__/cursor-history.unit.test.js +87 -0
- package/build/tools/__tests__/memorize_asset.unit.test.d.ts +1 -0
- package/build/tools/__tests__/memorize_asset.unit.test.js +68 -0
- package/build/tools/code_insight.d.ts +20 -0
- package/build/tools/code_insight.js +15 -0
- package/build/tools/cursor_list_conversations.d.ts +7 -0
- package/build/tools/cursor_list_conversations.js +35 -0
- package/build/tools/cursor_read_conversation.d.ts +7 -0
- package/build/tools/cursor_read_conversation.js +36 -0
- package/build/tools/cursor_search_conversations.d.ts +7 -0
- package/build/tools/cursor_search_conversations.js +36 -0
- package/build/tools/index.d.ts +6 -0
- package/build/tools/index.js +7 -0
- package/build/tools/init_project_context.d.ts +20 -1
- package/build/tools/init_project_context.js +114 -99
- package/build/tools/memorize_asset.d.ts +7 -0
- package/build/tools/memorize_asset.js +66 -0
- package/build/tools/read_memory_asset.d.ts +7 -0
- package/build/tools/read_memory_asset.js +26 -0
- package/build/tools/scan_and_extract_patterns.d.ts +27 -0
- package/build/tools/scan_and_extract_patterns.js +346 -0
- package/build/tools/start_bugfix.d.ts +20 -0
- package/build/tools/start_bugfix.js +97 -69
- package/build/tools/start_feature.d.ts +20 -0
- package/build/tools/start_feature.js +61 -31
- package/build/tools/start_onboard.d.ts +20 -0
- package/build/tools/start_onboard.js +15 -0
- package/build/tools/start_product.js +8 -1
- package/build/tools/start_ui.d.ts +20 -0
- package/build/tools/start_ui.js +79 -34
- package/build/tools/ui-ux-tools.js +21 -17
- package/build/utils/ui-data-loader.d.ts +18 -2
- package/build/utils/ui-data-loader.js +74 -12
- package/docs/data/tools.js +472 -373
- package/docs/i18n/all-tools/en.json +38 -5
- package/docs/i18n/all-tools/ja.json +14 -4
- package/docs/i18n/all-tools/ko.json +13 -3
- package/docs/i18n/all-tools/zh-CN.json +38 -5
- package/docs/i18n/en.json +48 -10
- package/docs/i18n/ja.json +47 -9
- package/docs/i18n/ko.json +47 -9
- package/docs/i18n/zh-CN.json +48 -10
- package/docs/pages/all-tools.html +515 -515
- package/docs/pages/examples.html +661 -661
- package/docs/pages/getting-started.html +673 -582
- package/docs/pages/migration.html +291 -291
- package/package.json +83 -81
- package/docs/debug-i18n.html +0 -163
package/README.md
CHANGED
|
@@ -1,66 +1,68 @@
|
|
|
1
|
-
|
|
2
|
-
<img src="docs/assets/logo.png" alt="知时MCP Logo" width="160"/>
|
|
3
|
-
<h1>知时MCP | mcp-probe-kit</h1>
|
|
4
|
-
<p><strong>Know the Context, Feed the Moment.</strong></p>
|
|
5
|
-
<p>
|
|
6
|
-
<code>Introspection</code> · <code>Context Hydration</code> · <code>Delegated Orchestration</code>
|
|
7
|
-
</p>
|
|
8
|
-
</div>
|
|
9
|
-
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
<!-- mcp-name: io.github.mybolide/mcp-probe-kit -->
|
|
13
|
-
|
|
14
|
-
> **Talk is cheap, show me the Context.**
|
|
15
|
-
>
|
|
16
|
-
> mcp-probe-kit is a protocol-level toolkit designed for developers who want AI to truly understand their project's intent. It's not just a collection of
|
|
17
|
-
|
|
18
|
-
**Languages**: [English](README.md) | [简体中文](i18n/README.zh-CN.md) | [日本語](i18n/README.ja-JP.md) | [한국어](i18n/README.ko-KR.md) | [Español](i18n/README.es-ES.md) | [Français](i18n/README.fr-FR.md) | [Deutsch](i18n/README.de-DE.md) | [Português (BR)](i18n/README.pt-BR.md)
|
|
19
|
-
|
|
20
|
-
[](https://www.npmjs.com/package/mcp-probe-kit)
|
|
21
|
-
[](https://www.npmjs.com/package/mcp-probe-kit)
|
|
22
|
-
[](https://opensource.org/licenses/MIT)
|
|
23
|
-
[](https://github.com/mybolide/mcp-probe-kit/stargazers)
|
|
24
|
-
|
|
25
|
-
> 🚀 AI-Powered Complete Development Toolkit - Covering the Entire Development Lifecycle
|
|
26
|
-
|
|
27
|
-
A powerful MCP (Model Context Protocol) server providing **
|
|
28
|
-
|
|
29
|
-
**🎉 v3.0 Major Update**: Streamlined tool count, focus on core competencies, eliminate choice paralysis, let AI do more native work
|
|
30
|
-
|
|
31
|
-
**Supports All MCP Clients**: Cursor, Claude Desktop, Cline, Continue, and more
|
|
32
|
-
|
|
33
|
-
**Protocol Version**: MCP 2025-11-25 · **SDK**: @modelcontextprotocol/sdk 1.27.1
|
|
34
|
-
|
|
35
|
-
---
|
|
36
|
-
|
|
37
|
-
## 📚 Complete Documentation
|
|
38
|
-
|
|
39
|
-
**👉 [https://mcp-probe-kit.bytezonex.com](https://mcp-probe-kit.bytezonex.com/)**
|
|
40
|
-
|
|
41
|
-
- [Quick Start](https://mcp-probe-kit.bytezonex.com/pages/getting-started.html) - Setup in 5 minutes
|
|
42
|
-
- [All Tools](https://mcp-probe-kit.bytezonex.com/pages/all-tools.html) - Complete list of
|
|
43
|
-
- [Best Practices](https://mcp-probe-kit.bytezonex.com/pages/examples.html) - Full development workflow guide
|
|
44
|
-
- [v3.0 Migration Guide](https://mcp-probe-kit.bytezonex.com/pages/migration.html) - Upgrade from v2.x to v3.0
|
|
45
|
-
|
|
46
|
-
---
|
|
47
|
-
|
|
48
|
-
## ✨ Core Features
|
|
49
|
-
|
|
50
|
-
### 📦
|
|
51
|
-
|
|
52
|
-
- **🔄 Workflow Orchestration** (6 tools) - One-click complex development workflows
|
|
53
|
-
- `start_feature`, `start_bugfix`, `start_onboard`, `start_ui`, `start_product`, `start_ralph`
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="docs/assets/logo.png" alt="知时MCP Logo" width="160"/>
|
|
3
|
+
<h1>知时MCP | mcp-probe-kit</h1>
|
|
4
|
+
<p><strong>Know the Context, Feed the Moment.</strong></p>
|
|
5
|
+
<p>
|
|
6
|
+
<code>Introspection</code> · <code>Context Hydration</code> · <code>Delegated Orchestration</code>
|
|
7
|
+
</p>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
<!-- mcp-name: io.github.mybolide/mcp-probe-kit -->
|
|
13
|
+
|
|
14
|
+
> **Talk is cheap, show me the Context.**
|
|
15
|
+
>
|
|
16
|
+
> mcp-probe-kit is a protocol-level toolkit designed for developers who want AI to truly understand their project's intent. It's not just a collection of 28 tools—it's a context-aware system that helps AI agents grasp what you're building.
|
|
17
|
+
|
|
18
|
+
**Languages**: [English](README.md) | [简体中文](i18n/README.zh-CN.md) | [日本語](i18n/README.ja-JP.md) | [한국어](i18n/README.ko-KR.md) | [Español](i18n/README.es-ES.md) | [Français](i18n/README.fr-FR.md) | [Deutsch](i18n/README.de-DE.md) | [Português (BR)](i18n/README.pt-BR.md)
|
|
19
|
+
|
|
20
|
+
[](https://www.npmjs.com/package/mcp-probe-kit)
|
|
21
|
+
[](https://www.npmjs.com/package/mcp-probe-kit)
|
|
22
|
+
[](https://opensource.org/licenses/MIT)
|
|
23
|
+
[](https://github.com/mybolide/mcp-probe-kit/stargazers)
|
|
24
|
+
|
|
25
|
+
> 🚀 AI-Powered Complete Development Toolkit - Covering the Entire Development Lifecycle
|
|
26
|
+
|
|
27
|
+
A powerful MCP (Model Context Protocol) server providing **28 tools** covering the complete workflow from product analysis to final release (Requirements → Design → Development → Quality → Release), all tools support **structured output**.
|
|
28
|
+
|
|
29
|
+
**🎉 v3.0 Major Update**: Streamlined tool count, focus on core competencies, eliminate choice paralysis, let AI do more native work
|
|
30
|
+
|
|
31
|
+
**Supports All MCP Clients**: Cursor, Claude Desktop, Cline, Continue, and more
|
|
32
|
+
|
|
33
|
+
**Protocol Version**: MCP 2025-11-25 · **SDK**: @modelcontextprotocol/sdk 1.27.1
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## 📚 Complete Documentation
|
|
38
|
+
|
|
39
|
+
**👉 [https://mcp-probe-kit.bytezonex.com](https://mcp-probe-kit.bytezonex.com/)**
|
|
40
|
+
|
|
41
|
+
- [Quick Start](https://mcp-probe-kit.bytezonex.com/pages/getting-started.html) - Setup in 5 minutes
|
|
42
|
+
- [All Tools](https://mcp-probe-kit.bytezonex.com/pages/all-tools.html) - Complete list of 28 tools
|
|
43
|
+
- [Best Practices](https://mcp-probe-kit.bytezonex.com/pages/examples.html) - Full development workflow guide
|
|
44
|
+
- [v3.0 Migration Guide](https://mcp-probe-kit.bytezonex.com/pages/migration.html) - Upgrade from v2.x to v3.0
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## ✨ Core Features
|
|
49
|
+
|
|
50
|
+
### 📦 28 Tools
|
|
51
|
+
|
|
52
|
+
- **🔄 Workflow Orchestration** (6 tools) - One-click complex development workflows
|
|
53
|
+
- `start_feature`, `start_bugfix`, `start_onboard`, `start_ui`, `start_product`, `start_ralph`
|
|
54
54
|
- **🔍 Code Analysis** (4 tools) - Code quality, refactoring, and graph insight
|
|
55
55
|
- `code_review`, `code_insight`, `fix_bug`, `refactor`
|
|
56
|
-
- **📝 Git Tools** (2 tools) - Git commits and work reports
|
|
57
|
-
- `gencommit`, `git_work_report`
|
|
58
|
-
- **⚡ Code Generation** (1 tool) - Test generation
|
|
59
|
-
- `gentest`
|
|
56
|
+
- **📝 Git Tools** (2 tools) - Git commits and work reports
|
|
57
|
+
- `gencommit`, `git_work_report`
|
|
58
|
+
- **⚡ Code Generation** (1 tool) - Test generation
|
|
59
|
+
- `gentest`
|
|
60
60
|
- **📦 Project Management** (6 tools) - Project initialization and requirements management
|
|
61
61
|
- `init_project`, `init_project_context`, `add_feature`, `estimate`, `interview`, `ask_user`
|
|
62
|
-
- **🎨 UI/UX
|
|
62
|
+
- **🎨 UI/UX Utilities** (3 tools) - Design systems and UI data synchronization
|
|
63
63
|
- `ui_design_system`, `ui_search`, `sync_ui_data`
|
|
64
|
+
- **🧠 Memory & Cursor History** (6 tools) - Reusable asset memory and local Cursor conversation retrieval
|
|
65
|
+
- `read_memory_asset`, `memorize_asset`, `scan_and_extract_patterns`, `cursor_list_conversations`, `cursor_search_conversations`, `cursor_read_conversation`
|
|
64
66
|
|
|
65
67
|
### 🧠 Code Graph Bridge (GitNexus)
|
|
66
68
|
|
|
@@ -81,7 +83,97 @@ A powerful MCP (Model Context Protocol) server providing **22 tools** covering t
|
|
|
81
83
|
- `start_bugfix` defaults to Toyota-style TBP 8-step root-cause analysis before repair
|
|
82
84
|
- `fix_bug` returns a structured TBP skeleton covering phenomenon, timeline, ruled-out paths, boundary, root cause, evidence, and repair plan
|
|
83
85
|
- This makes bug, regression, anomaly, and "why didn't it work" investigations follow analyze-first discipline instead of patching symptoms
|
|
84
|
-
|
|
86
|
+
|
|
87
|
+
### 🧠 Memory Retrieval and Cursor History
|
|
88
|
+
|
|
89
|
+
- Memory tools use **Qdrant** as the vector database backend
|
|
90
|
+
- Embedding service supports two modes:
|
|
91
|
+
- `ollama`
|
|
92
|
+
- `openai-compatible`
|
|
93
|
+
- Cursor history tools read the local Cursor database directly through Node.js, without Python bridge
|
|
94
|
+
- Cursor history currently supports:
|
|
95
|
+
- Windows: `%APPDATA%\\Cursor\\User\\globalStorage\\state.vscdb`
|
|
96
|
+
- macOS: `~/Library/Application Support/Cursor/User/globalStorage/state.vscdb`
|
|
97
|
+
- Linux: `~/.config/Cursor/User/globalStorage/state.vscdb`
|
|
98
|
+
|
|
99
|
+
**Memory tools:**
|
|
100
|
+
- `memorize_asset` - Persist reusable code/spec/pattern assets into vector memory
|
|
101
|
+
- `read_memory_asset` - Read full asset content by `asset_id`
|
|
102
|
+
- `scan_and_extract_patterns` - Extract reusable patterns from code/file/directory before deciding whether to persist
|
|
103
|
+
|
|
104
|
+
**Memory backend and embedding configuration:**
|
|
105
|
+
- Vector database: **Qdrant**
|
|
106
|
+
- Recommended local setup: `Qdrant + Ollama`
|
|
107
|
+
- Supported embedding providers:
|
|
108
|
+
- `ollama`
|
|
109
|
+
- `openai-compatible`
|
|
110
|
+
- Required environment variables for memory write/search:
|
|
111
|
+
- `MEMORY_QDRANT_URL`
|
|
112
|
+
- `MEMORY_EMBEDDING_URL`
|
|
113
|
+
- `MEMORY_EMBEDDING_MODEL`
|
|
114
|
+
- Optional environment variables:
|
|
115
|
+
- `MEMORY_QDRANT_API_KEY`
|
|
116
|
+
- `MEMORY_QDRANT_COLLECTION` (default: `mcp_probe_memory`)
|
|
117
|
+
- `MEMORY_EMBEDDING_API_KEY`
|
|
118
|
+
- `MEMORY_EMBEDDING_PROVIDER` (`ollama` by default)
|
|
119
|
+
- `MEMORY_SEARCH_LIMIT` (default: `3`)
|
|
120
|
+
- `MEMORY_SUMMARY_MAX_CHARS` (default: `280`)
|
|
121
|
+
- Behavior notes:
|
|
122
|
+
- Read-only memory access only requires `MEMORY_QDRANT_URL`
|
|
123
|
+
- Memory write is enabled only when `MEMORY_QDRANT_URL`, `MEMORY_EMBEDDING_URL`, and `MEMORY_EMBEDDING_MODEL` are all configured
|
|
124
|
+
- The Qdrant collection is auto-created on first write, and vector dimension is inferred from the first embedding response
|
|
125
|
+
|
|
126
|
+
**Recommended local memory setup (Qdrant + Ollama):**
|
|
127
|
+
```bash
|
|
128
|
+
docker run -d --name mcp-qdrant -p 6333:6333 qdrant/qdrant
|
|
129
|
+
ollama pull nomic-embed-text
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
```json
|
|
133
|
+
{
|
|
134
|
+
"mcpServers": {
|
|
135
|
+
"mcp-probe-kit": {
|
|
136
|
+
"command": "npx",
|
|
137
|
+
"args": ["-y", "mcp-probe-kit@latest"],
|
|
138
|
+
"env": {
|
|
139
|
+
"MEMORY_QDRANT_URL": "http://127.0.0.1:6333",
|
|
140
|
+
"MEMORY_QDRANT_COLLECTION": "mcp_probe_memory",
|
|
141
|
+
"MEMORY_EMBEDDING_PROVIDER": "ollama",
|
|
142
|
+
"MEMORY_EMBEDDING_URL": "http://127.0.0.1:11434/api/embeddings",
|
|
143
|
+
"MEMORY_EMBEDDING_MODEL": "nomic-embed-text",
|
|
144
|
+
"MEMORY_SEARCH_LIMIT": "3",
|
|
145
|
+
"MEMORY_SUMMARY_MAX_CHARS": "280"
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
**OpenAI-compatible embedding setup:**
|
|
153
|
+
```json
|
|
154
|
+
{
|
|
155
|
+
"mcpServers": {
|
|
156
|
+
"mcp-probe-kit": {
|
|
157
|
+
"command": "npx",
|
|
158
|
+
"args": ["-y", "mcp-probe-kit@latest"],
|
|
159
|
+
"env": {
|
|
160
|
+
"MEMORY_QDRANT_URL": "http://127.0.0.1:6333",
|
|
161
|
+
"MEMORY_QDRANT_COLLECTION": "mcp_probe_memory",
|
|
162
|
+
"MEMORY_EMBEDDING_PROVIDER": "openai-compatible",
|
|
163
|
+
"MEMORY_EMBEDDING_URL": "https://your-embedding-endpoint/v1/embeddings",
|
|
164
|
+
"MEMORY_EMBEDDING_API_KEY": "your-api-key",
|
|
165
|
+
"MEMORY_EMBEDDING_MODEL": "text-embedding-3-small"
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
**Cursor history tools:**
|
|
173
|
+
- `cursor_list_conversations` - List recent local Cursor conversations by title/workspace
|
|
174
|
+
- `cursor_search_conversations` - Search local Cursor history by keyword or request id
|
|
175
|
+
- `cursor_read_conversation` - Read a single local Cursor conversation timeline by `composer_id`
|
|
176
|
+
|
|
85
177
|
### 🎯 Structured Output
|
|
86
178
|
|
|
87
179
|
Core and orchestration tools support **structured output**, returning machine-readable JSON data, improving AI parsing accuracy, supporting tool chaining and state tracking.
|
|
@@ -101,238 +193,354 @@ Core and orchestration tools support **structured output**, returning machine-re
|
|
|
101
193
|
- Optional extensions capability switch: enable with `MCP_ENABLE_EXTENSIONS_CAPABILITY=1`
|
|
102
194
|
- Optional MCP Apps resource output for UI tools: enable with `MCP_ENABLE_UI_APPS=1`
|
|
103
195
|
- UI tools can expose preview resources via `ui://...` and response `_meta.ui.resourceUri`
|
|
104
|
-
|
|
105
|
-
### 🧭 Delegated Orchestration Protocol
|
|
106
|
-
|
|
107
|
-
All `start_*` orchestration tools return an **execution plan** in `structuredContent.metadata.plan`.
|
|
108
|
-
AI needs to **call tools step by step and persist files**, rather than the tool executing internally.
|
|
109
|
-
|
|
110
|
-
**Plan Schema (Core Fields)**:
|
|
111
|
-
```json
|
|
112
|
-
{
|
|
113
|
-
"mode": "delegated",
|
|
114
|
-
"steps": [
|
|
115
|
-
{
|
|
116
|
-
"id": "spec",
|
|
117
|
-
"tool": "add_feature",
|
|
118
|
-
"args": { "feature_name": "user-auth", "description": "User authentication feature" },
|
|
119
|
-
"outputs": ["docs/specs/user-auth/requirements.md"]
|
|
120
|
-
}
|
|
121
|
-
]
|
|
122
|
-
}
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
**Field Description**:
|
|
126
|
-
- `mode`: Fixed as `delegated`
|
|
127
|
-
- `steps`: Array of execution steps
|
|
128
|
-
- `tool`: Tool name (e.g. `add_feature`)
|
|
129
|
-
- `action`: Manual action description when no tool (e.g. `update_project_context`)
|
|
130
|
-
- `args`: Tool parameters
|
|
131
|
-
- `outputs`: Expected artifacts
|
|
132
|
-
- `when/dependsOn/note`: Optional conditions and notes
|
|
133
|
-
|
|
134
|
-
### 🧩 Structured Output Field Specification (Key Fields)
|
|
135
|
-
|
|
136
|
-
Both orchestration and atomic tools return `structuredContent`, common fields:
|
|
137
|
-
- `summary`: One-line summary
|
|
138
|
-
- `status`: Status (pending/success/failed/partial)
|
|
139
|
-
- `steps`: Execution steps (orchestration tools)
|
|
140
|
-
- `artifacts`: Artifact list (path + purpose)
|
|
141
|
-
- `metadata.plan`: Delegated execution plan (only start_*)
|
|
142
|
-
- `specArtifacts`: Specification artifacts (start_feature)
|
|
143
|
-
- `estimate`: Estimation results (start_feature / estimate)
|
|
144
|
-
|
|
145
|
-
### 🧠 Requirements Clarification Mode (Requirements Loop)
|
|
146
|
-
|
|
147
|
-
When requirements are unclear, use `requirements_mode=loop` in `start_feature / start_bugfix / start_ui`.
|
|
148
|
-
This mode performs 1-2 rounds of structured clarification before entering spec/fix/UI execution.
|
|
149
|
-
|
|
150
|
-
**Example:**
|
|
151
|
-
```json
|
|
152
|
-
{
|
|
153
|
-
"feature_name": "user-auth",
|
|
154
|
-
"description": "User authentication feature",
|
|
155
|
-
"requirements_mode": "loop",
|
|
156
|
-
"loop_max_rounds": 2,
|
|
157
|
-
"loop_question_budget": 5
|
|
158
|
-
}
|
|
159
|
-
```
|
|
160
|
-
|
|
161
|
-
### 🧩 Template System (Regular Model Friendly)
|
|
162
|
-
|
|
163
|
-
`add_feature` supports template profiles, default `auto` auto-selects: prefers `guided` when requirements are incomplete (includes detailed filling rules and checklists), selects `strict` when requirements are complete (more compact structure, suitable for high-capability models or archival scenarios).
|
|
164
|
-
|
|
165
|
-
**Example:**
|
|
166
|
-
```json
|
|
167
|
-
{
|
|
168
|
-
"description": "Add user authentication feature",
|
|
169
|
-
"template_profile": "auto"
|
|
170
|
-
}
|
|
171
|
-
```
|
|
172
|
-
|
|
173
|
-
**Applicable Tools**:
|
|
174
|
-
- `start_feature` passes `template_profile` to `add_feature`
|
|
175
|
-
- `start_bugfix` / `start_ui` also support `template_profile` for controlling guidance strength (auto/guided/strict)
|
|
176
|
-
|
|
177
|
-
**Template Profile Strategy**:
|
|
178
|
-
- `guided`: Less/incomplete requirements info, regular model priority
|
|
179
|
-
- `strict`: Requirements structured, prefer more compact guidance
|
|
180
|
-
- `auto`: Default recommendation, auto-selects guided/strict
|
|
181
|
-
|
|
182
|
-
### 🔄 Workflow Orchestration
|
|
183
|
-
|
|
184
|
-
6 intelligent orchestration tools that automatically combine multiple basic tools for one-click complex development workflows:
|
|
185
|
-
- `start_feature` - New feature development (Requirements → Design → Estimation)
|
|
196
|
+
|
|
197
|
+
### 🧭 Delegated Orchestration Protocol
|
|
198
|
+
|
|
199
|
+
All `start_*` orchestration tools return an **execution plan** in `structuredContent.metadata.plan`.
|
|
200
|
+
AI needs to **call tools step by step and persist files**, rather than the tool executing internally.
|
|
201
|
+
|
|
202
|
+
**Plan Schema (Core Fields)**:
|
|
203
|
+
```json
|
|
204
|
+
{
|
|
205
|
+
"mode": "delegated",
|
|
206
|
+
"steps": [
|
|
207
|
+
{
|
|
208
|
+
"id": "spec",
|
|
209
|
+
"tool": "add_feature",
|
|
210
|
+
"args": { "feature_name": "user-auth", "description": "User authentication feature" },
|
|
211
|
+
"outputs": ["docs/specs/user-auth/requirements.md"]
|
|
212
|
+
}
|
|
213
|
+
]
|
|
214
|
+
}
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
**Field Description**:
|
|
218
|
+
- `mode`: Fixed as `delegated`
|
|
219
|
+
- `steps`: Array of execution steps
|
|
220
|
+
- `tool`: Tool name (e.g. `add_feature`)
|
|
221
|
+
- `action`: Manual action description when no tool (e.g. `update_project_context`)
|
|
222
|
+
- `args`: Tool parameters
|
|
223
|
+
- `outputs`: Expected artifacts
|
|
224
|
+
- `when/dependsOn/note`: Optional conditions and notes
|
|
225
|
+
|
|
226
|
+
### 🧩 Structured Output Field Specification (Key Fields)
|
|
227
|
+
|
|
228
|
+
Both orchestration and atomic tools return `structuredContent`, common fields:
|
|
229
|
+
- `summary`: One-line summary
|
|
230
|
+
- `status`: Status (pending/success/failed/partial)
|
|
231
|
+
- `steps`: Execution steps (orchestration tools)
|
|
232
|
+
- `artifacts`: Artifact list (path + purpose)
|
|
233
|
+
- `metadata.plan`: Delegated execution plan (only start_*)
|
|
234
|
+
- `specArtifacts`: Specification artifacts (start_feature)
|
|
235
|
+
- `estimate`: Estimation results (start_feature / estimate)
|
|
236
|
+
|
|
237
|
+
### 🧠 Requirements Clarification Mode (Requirements Loop)
|
|
238
|
+
|
|
239
|
+
When requirements are unclear, use `requirements_mode=loop` in `start_feature / start_bugfix / start_ui`.
|
|
240
|
+
This mode performs 1-2 rounds of structured clarification before entering spec/fix/UI execution.
|
|
241
|
+
|
|
242
|
+
**Example:**
|
|
243
|
+
```json
|
|
244
|
+
{
|
|
245
|
+
"feature_name": "user-auth",
|
|
246
|
+
"description": "User authentication feature",
|
|
247
|
+
"requirements_mode": "loop",
|
|
248
|
+
"loop_max_rounds": 2,
|
|
249
|
+
"loop_question_budget": 5
|
|
250
|
+
}
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
### 🧩 Template System (Regular Model Friendly)
|
|
254
|
+
|
|
255
|
+
`add_feature` supports template profiles, default `auto` auto-selects: prefers `guided` when requirements are incomplete (includes detailed filling rules and checklists), selects `strict` when requirements are complete (more compact structure, suitable for high-capability models or archival scenarios).
|
|
256
|
+
|
|
257
|
+
**Example:**
|
|
258
|
+
```json
|
|
259
|
+
{
|
|
260
|
+
"description": "Add user authentication feature",
|
|
261
|
+
"template_profile": "auto"
|
|
262
|
+
}
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
**Applicable Tools**:
|
|
266
|
+
- `start_feature` passes `template_profile` to `add_feature`
|
|
267
|
+
- `start_bugfix` / `start_ui` also support `template_profile` for controlling guidance strength (auto/guided/strict)
|
|
268
|
+
|
|
269
|
+
**Template Profile Strategy**:
|
|
270
|
+
- `guided`: Less/incomplete requirements info, regular model priority
|
|
271
|
+
- `strict`: Requirements structured, prefer more compact guidance
|
|
272
|
+
- `auto`: Default recommendation, auto-selects guided/strict
|
|
273
|
+
|
|
274
|
+
### 🔄 Workflow Orchestration
|
|
275
|
+
|
|
276
|
+
6 intelligent orchestration tools that automatically combine multiple basic tools for one-click complex development workflows:
|
|
277
|
+
- `start_feature` - New feature development (Requirements → Design → Estimation)
|
|
186
278
|
- `start_bugfix` - Bug fixing (TBP 8-step RCA → Fix → Testing)
|
|
187
|
-
- `start_onboard` - Project onboarding (Generate project context docs)
|
|
188
|
-
- `start_ui` - UI development (Design system → Components → Code)
|
|
189
|
-
- `start_product` - Product design (PRD → Prototype → Design system → HTML)
|
|
190
|
-
- `start_ralph` - Ralph Loop (Iterative development until goal completion)
|
|
191
|
-
|
|
192
|
-
### 🚀 Product Design Workflow
|
|
193
|
-
|
|
194
|
-
`start_product` is a complete product design orchestration tool, from requirements to interactive prototype:
|
|
195
|
-
|
|
196
|
-
**Workflow:**
|
|
197
|
-
1. **Requirements Analysis** - Generate standard PRD (product overview, feature requirements, page list)
|
|
198
|
-
2. **Prototype Design** - Generate detailed prototype docs for each page
|
|
199
|
-
3. **Design System** - Generate design specifications based on product type
|
|
200
|
-
4. **HTML Prototype** - Generate interactive prototype viewable in browser
|
|
201
|
-
5. **Project Context** - Auto-update project documentation
|
|
202
|
-
|
|
203
|
-
**Structured Output Additions**:
|
|
204
|
-
- `start_product.structuredContent.artifacts`: Artifact list (PRD, prototypes, design system, etc.)
|
|
205
|
-
- `interview.structuredContent.mode`: `usage` / `questions` / `record`
|
|
206
|
-
|
|
207
|
-
### 🎨 UI/UX Pro Max
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
- `start_ui` - One-click UI development (supports intelligent mode) (orchestration tool)
|
|
211
|
-
- `ui_design_system` - Intelligent design system generation
|
|
212
|
-
- `ui_search` - UI/UX data search (BM25 algorithm)
|
|
213
|
-
- `sync_ui_data` - Sync latest UI/UX data locally
|
|
214
|
-
|
|
215
|
-
**Note**: `start_ui` automatically calls `ui_design_system` and `ui_search`, you don't need to call them separately.
|
|
216
|
-
|
|
217
|
-
**Inspiration:**
|
|
218
|
-
- [ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) - UI/UX design system philosophy
|
|
219
|
-
- [json-render](https://github.com/vercel-labs/json-render) - JSON template rendering engine
|
|
220
|
-
|
|
221
|
-
**
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
- ✅
|
|
257
|
-
- ✅
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
279
|
+
- `start_onboard` - Project onboarding (Generate project context docs)
|
|
280
|
+
- `start_ui` - UI development (Design system → Components → Code)
|
|
281
|
+
- `start_product` - Product design (PRD → Prototype → Design system → HTML)
|
|
282
|
+
- `start_ralph` - Ralph Loop (Iterative development until goal completion)
|
|
283
|
+
|
|
284
|
+
### 🚀 Product Design Workflow
|
|
285
|
+
|
|
286
|
+
`start_product` is a complete product design orchestration tool, from requirements to interactive prototype:
|
|
287
|
+
|
|
288
|
+
**Workflow:**
|
|
289
|
+
1. **Requirements Analysis** - Generate standard PRD (product overview, feature requirements, page list)
|
|
290
|
+
2. **Prototype Design** - Generate detailed prototype docs for each page
|
|
291
|
+
3. **Design System** - Generate design specifications based on product type
|
|
292
|
+
4. **HTML Prototype** - Generate interactive prototype viewable in browser
|
|
293
|
+
5. **Project Context** - Auto-update project documentation
|
|
294
|
+
|
|
295
|
+
**Structured Output Additions**:
|
|
296
|
+
- `start_product.structuredContent.artifacts`: Artifact list (PRD, prototypes, design system, etc.)
|
|
297
|
+
- `interview.structuredContent.mode`: `usage` / `questions` / `record`
|
|
298
|
+
|
|
299
|
+
### 🎨 UI/UX Pro Max
|
|
300
|
+
|
|
301
|
+
4 UI/UX tools with `start_ui` as the unified entry point:
|
|
302
|
+
- `start_ui` - One-click UI development (supports intelligent mode) (orchestration tool)
|
|
303
|
+
- `ui_design_system` - Intelligent design system generation
|
|
304
|
+
- `ui_search` - UI/UX data search (BM25 algorithm)
|
|
305
|
+
- `sync_ui_data` - Sync latest UI/UX data locally
|
|
306
|
+
|
|
307
|
+
**Note**: `start_ui` automatically calls `ui_design_system` and `ui_search`, you don't need to call them separately.
|
|
308
|
+
|
|
309
|
+
**Inspiration:**
|
|
310
|
+
- [ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) - UI/UX design system philosophy
|
|
311
|
+
- [json-render](https://github.com/vercel-labs/json-render) - JSON template rendering engine
|
|
312
|
+
|
|
313
|
+
**Skill Bridge for UI/PRD workflows:**
|
|
314
|
+
- `start_ui` and `start_product` now include a Skill Bridge section in guidance and `structuredContent.metadata.skills`.
|
|
315
|
+
- Recommended skill call order: `ui-ux-pro-max` → `interaction-design` → `frontend-design`.
|
|
316
|
+
- If some skills are missing, workflow continues with MCP main plan and marks unavailable skills in metadata.
|
|
317
|
+
|
|
318
|
+
**Why use `sync_ui_data`?**
|
|
319
|
+
|
|
320
|
+
Our `start_ui` tool relies on a rich UI/UX database (colors, icons, charts, components, design patterns, etc.) to generate high-quality design systems and code. This data comes from npm package [uipro-cli](https://www.npmjs.com/package/uipro-cli), including:
|
|
321
|
+
- 🎨 Color schemes (mainstream brand colors, color palettes)
|
|
322
|
+
- 🔣 Icon libraries (React Icons, Heroicons, etc.)
|
|
323
|
+
- 📊 Chart components (Recharts, Chart.js, etc.)
|
|
324
|
+
- 🎯 Landing page templates (SaaS, e-commerce, government, etc.)
|
|
325
|
+
- 📐 Design specifications (spacing, fonts, shadows, etc.)
|
|
326
|
+
|
|
327
|
+
**Data Sync Strategy:**
|
|
328
|
+
1. **Embedded Data**: Synced at build time, works offline
|
|
329
|
+
2. **Background Auto Sync**: Downloads latest data to `~/.mcp-probe-kit/ui-ux-data/` without changing current session output
|
|
330
|
+
3. **Next-Start Activation**: Newly downloaded data is applied on next process start (keeps current session deterministic)
|
|
331
|
+
4. **Manual Sync**: Use `sync_ui_data` to force refresh cache immediately (still applies next start by default)
|
|
332
|
+
|
|
333
|
+
This ensures `start_ui` can generate professional-grade UI code even offline.
|
|
334
|
+
|
|
335
|
+
### 🎤 Requirements Interview
|
|
336
|
+
|
|
337
|
+
2 interview tools to clarify requirements before development:
|
|
338
|
+
- `interview` - Structured requirements interview
|
|
339
|
+
- `ask_user` - AI proactive questioning
|
|
340
|
+
|
|
341
|
+
---
|
|
342
|
+
|
|
343
|
+
## 🧭 Tool Selection Guide
|
|
344
|
+
|
|
345
|
+
### When to use orchestration tools vs individual tools?
|
|
346
|
+
|
|
347
|
+
**Use orchestration tools (start_*) when:**
|
|
348
|
+
- ✅ Need complete workflow (multiple steps)
|
|
349
|
+
- ✅ Want to automate multiple tasks
|
|
350
|
+
- ✅ Need to generate multiple artifacts (docs, code, tests, etc.)
|
|
351
|
+
|
|
352
|
+
**Use individual tools when:**
|
|
353
|
+
- ✅ Only need specific functionality
|
|
354
|
+
- ✅ Already have project context docs
|
|
355
|
+
- ✅ Need more fine-grained control
|
|
356
|
+
|
|
357
|
+
### Common Scenario Selection
|
|
358
|
+
|
|
359
|
+
| Scenario | Recommended Tool | Reason |
|
|
360
|
+
|---------|-----------------|--------|
|
|
361
|
+
| Develop new feature (complete flow) | `start_feature` | Auto-complete: spec→estimation |
|
|
362
|
+
| Only need feature spec docs | `add_feature` | More lightweight, only generates docs |
|
|
265
363
|
| Fix bug (complete flow) | `start_bugfix` | Root-cause-first flow: TBP RCA → fix → test |
|
|
266
364
|
| Only need bug analysis | `fix_bug` | TBP 8-step RCA only, without full orchestration |
|
|
267
|
-
| Generate design system | `ui_design_system` | Directly generate design specs |
|
|
268
|
-
| Develop UI components | `start_ui` | Complete flow: design→components→code |
|
|
269
|
-
| Product design (requirements to prototype) | `start_product` | One-click: PRD→prototype→HTML |
|
|
270
|
-
| One-sentence requirement analysis | `init_project` | Generate complete project spec docs |
|
|
271
|
-
| Project onboarding docs | `init_project_context` | Generate tech stack/architecture/conventions |
|
|
272
|
-
|
|
273
|
-
---
|
|
274
|
-
|
|
275
|
-
## 🚀 Quick Start
|
|
276
|
-
|
|
277
|
-
### Method 1: Use directly with npx (Recommended)
|
|
278
|
-
|
|
279
|
-
No installation needed, use the latest version directly.
|
|
280
|
-
|
|
281
|
-
#### Cursor / Cline Configuration
|
|
282
|
-
|
|
283
|
-
**Config file location:**
|
|
284
|
-
- Windows: `%APPDATA%\Cursor\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json`
|
|
285
|
-
- macOS: `~/Library/Application Support/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
|
|
286
|
-
- Linux: `~/.config/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
|
|
287
|
-
|
|
288
|
-
**Config content:**
|
|
289
|
-
```json
|
|
290
|
-
{
|
|
291
|
-
"mcpServers": {
|
|
292
|
-
"mcp-probe-kit": {
|
|
293
|
-
"command": "npx",
|
|
294
|
-
"args": ["mcp-probe-kit@latest"]
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
```
|
|
299
|
-
|
|
300
|
-
#### Claude Desktop Configuration
|
|
301
|
-
|
|
302
|
-
**Config file location:**
|
|
303
|
-
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
304
|
-
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
305
|
-
- Linux: `~/.config/Claude/claude_desktop_config.json`
|
|
306
|
-
|
|
307
|
-
**Config content:**
|
|
308
|
-
```json
|
|
309
|
-
{
|
|
310
|
-
"mcpServers": {
|
|
311
|
-
"mcp-probe-kit": {
|
|
312
|
-
"command": "npx",
|
|
313
|
-
"args": ["-y", "mcp-probe-kit@latest"]
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
```
|
|
318
|
-
|
|
365
|
+
| Generate design system | `ui_design_system` | Directly generate design specs |
|
|
366
|
+
| Develop UI components | `start_ui` | Complete flow: design→components→code |
|
|
367
|
+
| Product design (requirements to prototype) | `start_product` | One-click: PRD→prototype→HTML |
|
|
368
|
+
| One-sentence requirement analysis | `init_project` | Generate complete project spec docs |
|
|
369
|
+
| Project onboarding docs | `init_project_context` | Generate tech stack/architecture/conventions |
|
|
370
|
+
|
|
371
|
+
---
|
|
372
|
+
|
|
373
|
+
## 🚀 Quick Start
|
|
374
|
+
|
|
375
|
+
### Method 1: Use directly with npx (Recommended)
|
|
376
|
+
|
|
377
|
+
No installation needed, use the latest version directly.
|
|
378
|
+
|
|
379
|
+
#### Cursor / Cline Configuration
|
|
380
|
+
|
|
381
|
+
**Config file location:**
|
|
382
|
+
- Windows: `%APPDATA%\Cursor\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json`
|
|
383
|
+
- macOS: `~/Library/Application Support/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
|
|
384
|
+
- Linux: `~/.config/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
|
|
385
|
+
|
|
386
|
+
**Config content:**
|
|
387
|
+
```json
|
|
388
|
+
{
|
|
389
|
+
"mcpServers": {
|
|
390
|
+
"mcp-probe-kit": {
|
|
391
|
+
"command": "npx",
|
|
392
|
+
"args": ["mcp-probe-kit@latest"]
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
```
|
|
397
|
+
|
|
398
|
+
#### Claude Desktop Configuration
|
|
399
|
+
|
|
400
|
+
**Config file location:**
|
|
401
|
+
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
402
|
+
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
403
|
+
- Linux: `~/.config/Claude/claude_desktop_config.json`
|
|
404
|
+
|
|
405
|
+
**Config content:**
|
|
406
|
+
```json
|
|
407
|
+
{
|
|
408
|
+
"mcpServers": {
|
|
409
|
+
"mcp-probe-kit": {
|
|
410
|
+
"command": "npx",
|
|
411
|
+
"args": ["-y", "mcp-probe-kit@latest"]
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
```
|
|
416
|
+
|
|
319
417
|
### Method 2: Global Installation
|
|
320
418
|
|
|
321
419
|
```bash
|
|
322
420
|
npm install -g mcp-probe-kit
|
|
323
|
-
```
|
|
324
|
-
|
|
325
|
-
Use in config file:
|
|
326
|
-
```json
|
|
327
|
-
{
|
|
328
|
-
"mcpServers": {
|
|
329
|
-
"mcp-probe-kit": {
|
|
330
|
-
"command": "mcp-probe-kit"
|
|
331
|
-
}
|
|
332
|
-
}
|
|
421
|
+
```
|
|
422
|
+
|
|
423
|
+
Use in config file:
|
|
424
|
+
```json
|
|
425
|
+
{
|
|
426
|
+
"mcpServers": {
|
|
427
|
+
"mcp-probe-kit": {
|
|
428
|
+
"command": "mcp-probe-kit"
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
### Optional Memory System Setup
|
|
435
|
+
|
|
436
|
+
If you want to use `memorize_asset`, `read_memory_asset`, and `scan_and_extract_patterns`, you need both:
|
|
437
|
+
|
|
438
|
+
1. A **Qdrant** vector database
|
|
439
|
+
2. An **embedding service** in either `ollama` or `openai-compatible` mode
|
|
440
|
+
|
|
441
|
+
#### Option A: Qdrant + Ollama
|
|
442
|
+
|
|
443
|
+
Start Qdrant with Docker:
|
|
444
|
+
|
|
445
|
+
```bash
|
|
446
|
+
docker run -d --name mcp-qdrant -p 6333:6333 qdrant/qdrant
|
|
447
|
+
```
|
|
448
|
+
|
|
449
|
+
Start Ollama and pull the default embedding model:
|
|
450
|
+
|
|
451
|
+
```bash
|
|
452
|
+
ollama pull nomic-embed-text
|
|
453
|
+
```
|
|
454
|
+
|
|
455
|
+
Recommended MCP config env:
|
|
456
|
+
|
|
457
|
+
```json
|
|
458
|
+
{
|
|
459
|
+
"mcpServers": {
|
|
460
|
+
"mcp-probe-kit": {
|
|
461
|
+
"command": "npx",
|
|
462
|
+
"args": ["-y", "mcp-probe-kit@latest"],
|
|
463
|
+
"env": {
|
|
464
|
+
"MEMORY_QDRANT_URL": "http://127.0.0.1:6333",
|
|
465
|
+
"MEMORY_QDRANT_COLLECTION": "mcp_probe_memory",
|
|
466
|
+
"MEMORY_EMBEDDING_PROVIDER": "ollama",
|
|
467
|
+
"MEMORY_EMBEDDING_URL": "http://127.0.0.1:11434/api/embeddings",
|
|
468
|
+
"MEMORY_EMBEDDING_MODEL": "nomic-embed-text",
|
|
469
|
+
"MEMORY_SEARCH_LIMIT": "3",
|
|
470
|
+
"MEMORY_SUMMARY_MAX_CHARS": "280"
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
```
|
|
476
|
+
|
|
477
|
+
#### Option B: Qdrant + OpenAI-Compatible Embedding API
|
|
478
|
+
|
|
479
|
+
Start Qdrant with Docker:
|
|
480
|
+
|
|
481
|
+
```bash
|
|
482
|
+
docker run -d --name mcp-qdrant -p 6333:6333 qdrant/qdrant
|
|
483
|
+
```
|
|
484
|
+
|
|
485
|
+
Then point the embedding config to an OpenAI-compatible `/embeddings` endpoint:
|
|
486
|
+
|
|
487
|
+
```json
|
|
488
|
+
{
|
|
489
|
+
"mcpServers": {
|
|
490
|
+
"mcp-probe-kit": {
|
|
491
|
+
"command": "npx",
|
|
492
|
+
"args": ["-y", "mcp-probe-kit@latest"],
|
|
493
|
+
"env": {
|
|
494
|
+
"MEMORY_QDRANT_URL": "http://127.0.0.1:6333",
|
|
495
|
+
"MEMORY_QDRANT_COLLECTION": "mcp_probe_memory",
|
|
496
|
+
"MEMORY_QDRANT_API_KEY": "",
|
|
497
|
+
"MEMORY_EMBEDDING_PROVIDER": "openai-compatible",
|
|
498
|
+
"MEMORY_EMBEDDING_URL": "https://your-embedding-endpoint/v1/embeddings",
|
|
499
|
+
"MEMORY_EMBEDDING_API_KEY": "your-api-key",
|
|
500
|
+
"MEMORY_EMBEDDING_MODEL": "text-embedding-3-small",
|
|
501
|
+
"MEMORY_SEARCH_LIMIT": "3",
|
|
502
|
+
"MEMORY_SUMMARY_MAX_CHARS": "280"
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
}
|
|
333
506
|
}
|
|
334
507
|
```
|
|
335
508
|
|
|
509
|
+
#### Memory Environment Variables
|
|
510
|
+
|
|
511
|
+
- `MEMORY_QDRANT_URL`: Qdrant base URL, required for all memory features
|
|
512
|
+
- `MEMORY_QDRANT_API_KEY`: Optional Qdrant API key
|
|
513
|
+
- `MEMORY_QDRANT_COLLECTION`: Collection name, default `mcp_probe_memory`
|
|
514
|
+
- `MEMORY_EMBEDDING_PROVIDER`: `ollama` or `openai-compatible`
|
|
515
|
+
- `MEMORY_EMBEDDING_URL`: Embedding endpoint URL
|
|
516
|
+
- `MEMORY_EMBEDDING_API_KEY`: Optional for Ollama, usually required for hosted OpenAI-compatible providers
|
|
517
|
+
- `MEMORY_EMBEDDING_MODEL`: Default is `nomic-embed-text`
|
|
518
|
+
- `MEMORY_SEARCH_LIMIT`: Default search result count is `3`
|
|
519
|
+
- `MEMORY_SUMMARY_MAX_CHARS`: Default summary truncation length is `280`
|
|
520
|
+
|
|
521
|
+
#### Notes
|
|
522
|
+
|
|
523
|
+
- Memory write capability is enabled only when `MEMORY_QDRANT_URL`, `MEMORY_EMBEDDING_URL`, and `MEMORY_EMBEDDING_MODEL` are configured
|
|
524
|
+
- Memory read capability only requires `MEMORY_QDRANT_URL`
|
|
525
|
+
- Qdrant collections are auto-created on first write with `Cosine` distance
|
|
526
|
+
- Vector size is inferred from the first embedding response
|
|
527
|
+
|
|
528
|
+
### Cursor History Support
|
|
529
|
+
|
|
530
|
+
Cursor local history tools do not require Qdrant or embedding configuration.
|
|
531
|
+
|
|
532
|
+
Supported platforms:
|
|
533
|
+
|
|
534
|
+
- Windows
|
|
535
|
+
- macOS
|
|
536
|
+
- Linux
|
|
537
|
+
|
|
538
|
+
Requirements:
|
|
539
|
+
|
|
540
|
+
- Cursor must be installed locally
|
|
541
|
+
- Cursor local database must exist under `User/globalStorage/state.vscdb`
|
|
542
|
+
- Compatibility depends on Cursor's current local database schema
|
|
543
|
+
|
|
336
544
|
### Windows Notes for Graph Tools
|
|
337
545
|
|
|
338
546
|
Applies to `code_insight`, `start_feature`, `start_bugfix`, and `init_project_context`.
|
|
@@ -374,101 +582,101 @@ Example config using a preinstalled `gitnexus` CLI:
|
|
|
374
582
|
### Restart Client
|
|
375
583
|
|
|
376
584
|
After configuration, **completely quit and reopen** your MCP client.
|
|
377
|
-
|
|
378
|
-
**👉 [Detailed Installation Guide](https://mcp-probe-kit.bytezonex.com/pages/getting-started.html)**
|
|
379
|
-
|
|
380
|
-
---
|
|
381
|
-
|
|
382
|
-
## 💡 Usage Examples
|
|
383
|
-
|
|
384
|
-
### Daily Development
|
|
385
|
-
```bash
|
|
386
|
-
code_review @feature.ts # Code review
|
|
387
|
-
gentest @feature.ts # Generate tests
|
|
388
|
-
gencommit # Generate commit message
|
|
389
|
-
```
|
|
390
|
-
|
|
391
|
-
### New Feature Development
|
|
392
|
-
```bash
|
|
393
|
-
start_feature user-auth "User authentication feature"
|
|
394
|
-
# Auto-complete: Requirements analysis → Design → Effort estimation
|
|
395
|
-
```
|
|
396
|
-
|
|
397
|
-
### Bug Fixing
|
|
398
|
-
```bash
|
|
399
|
-
start_bugfix
|
|
400
|
-
# Then paste error message
|
|
401
|
-
# Auto-complete: Problem location → Fix solution → Test code
|
|
402
|
-
```
|
|
403
|
-
|
|
404
|
-
### Product Design
|
|
405
|
-
```bash
|
|
406
|
-
start_product "Online Education Platform" --product_type=SaaS
|
|
407
|
-
# Auto-complete: PRD → Prototype → Design system → HTML prototype
|
|
408
|
-
```
|
|
409
|
-
|
|
410
|
-
### UI Development
|
|
411
|
-
```bash
|
|
412
|
-
start_ui "Login Page" --mode=auto
|
|
413
|
-
# Auto-complete: Design system → Component generation → Code output
|
|
414
|
-
```
|
|
415
|
-
|
|
416
|
-
### Project Context Documentation
|
|
417
|
-
```bash
|
|
418
|
-
# Single file mode (default) - Generate a complete project-context.md
|
|
419
|
-
init_project_context
|
|
420
|
-
|
|
421
|
-
# Modular mode - Generate 6 category docs (suitable for large projects)
|
|
422
|
-
init_project_context --mode=modular
|
|
423
|
-
# Generates: project-context.md (index) + 5 category docs
|
|
424
|
-
```
|
|
425
|
-
|
|
426
|
-
### Git Work Report
|
|
427
|
-
```bash
|
|
428
|
-
# Generate daily report
|
|
429
|
-
git_work_report --date 2026-02-03
|
|
430
|
-
|
|
431
|
-
# Generate weekly report
|
|
432
|
-
git_work_report --start_date 2026-02-01 --end_date 2026-02-07
|
|
433
|
-
|
|
434
|
-
# Save to file
|
|
435
|
-
git_work_report --date 2026-02-03 --output_file daily-report.md
|
|
436
|
-
# Auto-analyze Git diff, generate concise professional report
|
|
437
|
-
# If direct command fails, auto-provides temp script solution (auto-deletes after execution)
|
|
438
|
-
```
|
|
439
|
-
|
|
440
|
-
**👉 [More Usage Examples](https://mcp-probe-kit.bytezonex.com/pages/examples.html)**
|
|
441
|
-
|
|
442
|
-
---
|
|
443
|
-
|
|
444
|
-
## ❓ FAQ
|
|
445
|
-
|
|
446
|
-
### Q1: Tool not working or errors?
|
|
447
|
-
|
|
448
|
-
Check detailed logs:
|
|
449
|
-
|
|
450
|
-
**Windows (PowerShell):**
|
|
451
|
-
```powershell
|
|
452
|
-
npx -y mcp-probe-kit@latest 2>&1 | Tee-Object -FilePath .\mcp-probe-kit.log
|
|
453
|
-
```
|
|
454
|
-
|
|
455
|
-
**macOS/Linux:**
|
|
456
|
-
```bash
|
|
457
|
-
npx -y mcp-probe-kit@latest 2>&1 | tee ./mcp-probe-kit.log
|
|
458
|
-
```
|
|
459
|
-
|
|
460
|
-
### Q2: Client not recognizing tools after configuration?
|
|
461
|
-
|
|
462
|
-
1. **Restart client** (completely quit then reopen)
|
|
463
|
-
2. Check config file path is correct
|
|
464
|
-
3. Confirm JSON format is correct, no syntax errors
|
|
465
|
-
4. Check client developer tools or logs for error messages
|
|
466
|
-
|
|
585
|
+
|
|
586
|
+
**👉 [Detailed Installation Guide](https://mcp-probe-kit.bytezonex.com/pages/getting-started.html)**
|
|
587
|
+
|
|
588
|
+
---
|
|
589
|
+
|
|
590
|
+
## 💡 Usage Examples
|
|
591
|
+
|
|
592
|
+
### Daily Development
|
|
593
|
+
```bash
|
|
594
|
+
code_review @feature.ts # Code review
|
|
595
|
+
gentest @feature.ts # Generate tests
|
|
596
|
+
gencommit # Generate commit message
|
|
597
|
+
```
|
|
598
|
+
|
|
599
|
+
### New Feature Development
|
|
600
|
+
```bash
|
|
601
|
+
start_feature user-auth "User authentication feature"
|
|
602
|
+
# Auto-complete: Requirements analysis → Design → Effort estimation
|
|
603
|
+
```
|
|
604
|
+
|
|
605
|
+
### Bug Fixing
|
|
606
|
+
```bash
|
|
607
|
+
start_bugfix
|
|
608
|
+
# Then paste error message
|
|
609
|
+
# Auto-complete: Problem location → Fix solution → Test code
|
|
610
|
+
```
|
|
611
|
+
|
|
612
|
+
### Product Design
|
|
613
|
+
```bash
|
|
614
|
+
start_product "Online Education Platform" --product_type=SaaS
|
|
615
|
+
# Auto-complete: PRD → Prototype → Design system → HTML prototype
|
|
616
|
+
```
|
|
617
|
+
|
|
618
|
+
### UI Development
|
|
619
|
+
```bash
|
|
620
|
+
start_ui "Login Page" --mode=auto
|
|
621
|
+
# Auto-complete: Design system → Component generation → Code output
|
|
622
|
+
```
|
|
623
|
+
|
|
624
|
+
### Project Context Documentation
|
|
625
|
+
```bash
|
|
626
|
+
# Single file mode (default) - Generate a complete project-context.md
|
|
627
|
+
init_project_context
|
|
628
|
+
|
|
629
|
+
# Modular mode - Generate 6 category docs (suitable for large projects)
|
|
630
|
+
init_project_context --mode=modular
|
|
631
|
+
# Generates: project-context.md (index) + 5 category docs
|
|
632
|
+
```
|
|
633
|
+
|
|
634
|
+
### Git Work Report
|
|
635
|
+
```bash
|
|
636
|
+
# Generate daily report
|
|
637
|
+
git_work_report --date 2026-02-03
|
|
638
|
+
|
|
639
|
+
# Generate weekly report
|
|
640
|
+
git_work_report --start_date 2026-02-01 --end_date 2026-02-07
|
|
641
|
+
|
|
642
|
+
# Save to file
|
|
643
|
+
git_work_report --date 2026-02-03 --output_file daily-report.md
|
|
644
|
+
# Auto-analyze Git diff, generate concise professional report
|
|
645
|
+
# If direct command fails, auto-provides temp script solution (auto-deletes after execution)
|
|
646
|
+
```
|
|
647
|
+
|
|
648
|
+
**👉 [More Usage Examples](https://mcp-probe-kit.bytezonex.com/pages/examples.html)**
|
|
649
|
+
|
|
650
|
+
---
|
|
651
|
+
|
|
652
|
+
## ❓ FAQ
|
|
653
|
+
|
|
654
|
+
### Q1: Tool not working or errors?
|
|
655
|
+
|
|
656
|
+
Check detailed logs:
|
|
657
|
+
|
|
658
|
+
**Windows (PowerShell):**
|
|
659
|
+
```powershell
|
|
660
|
+
npx -y mcp-probe-kit@latest 2>&1 | Tee-Object -FilePath .\mcp-probe-kit.log
|
|
661
|
+
```
|
|
662
|
+
|
|
663
|
+
**macOS/Linux:**
|
|
664
|
+
```bash
|
|
665
|
+
npx -y mcp-probe-kit@latest 2>&1 | tee ./mcp-probe-kit.log
|
|
666
|
+
```
|
|
667
|
+
|
|
668
|
+
### Q2: Client not recognizing tools after configuration?
|
|
669
|
+
|
|
670
|
+
1. **Restart client** (completely quit then reopen)
|
|
671
|
+
2. Check config file path is correct
|
|
672
|
+
3. Confirm JSON format is correct, no syntax errors
|
|
673
|
+
4. Check client developer tools or logs for error messages
|
|
674
|
+
|
|
467
675
|
### Q3: How to update to latest version?
|
|
468
676
|
|
|
469
677
|
**npx method (Recommended):**
|
|
470
678
|
Use `@latest` tag in config, automatically uses latest version.
|
|
471
|
-
|
|
679
|
+
|
|
472
680
|
**Global installation method:**
|
|
473
681
|
```bash
|
|
474
682
|
npm update -g mcp-probe-kit
|
|
@@ -499,41 +707,41 @@ Try this:
|
|
|
499
707
|
`MCP_GITNEXUS_TIMEOUT_MS`
|
|
500
708
|
|
|
501
709
|
**👉 [More FAQ](https://mcp-probe-kit.bytezonex.com/pages/getting-started.html)**
|
|
502
|
-
|
|
503
|
-
---
|
|
504
|
-
|
|
505
|
-
## 🤝 Contributing
|
|
506
|
-
|
|
507
|
-
Issues and Pull Requests welcome!
|
|
508
|
-
|
|
509
|
-
**Improvement suggestions:**
|
|
510
|
-
- Add useful tools
|
|
511
|
-
- Optimize existing tool prompts
|
|
512
|
-
- Improve documentation and examples
|
|
513
|
-
- Fix bugs
|
|
514
|
-
|
|
515
|
-
---
|
|
516
|
-
|
|
517
|
-
## 📄 License
|
|
518
|
-
|
|
519
|
-
MIT License
|
|
520
|
-
|
|
521
|
-
---
|
|
522
|
-
|
|
523
|
-
## 🔗 Related Links
|
|
524
|
-
|
|
525
|
-
- **Author**: [Kyle (小墨)](https://www.bytezonex.com/)
|
|
526
|
-
- **GitHub**: [mcp-probe-kit](https://github.com/mybolide/mcp-probe-kit)
|
|
527
|
-
- **npm**: [mcp-probe-kit](https://www.npmjs.com/package/mcp-probe-kit)
|
|
528
|
-
- **Documentation**: [https://mcp-probe-kit.bytezonex.com](https://mcp-probe-kit.bytezonex.com/)
|
|
529
|
-
|
|
530
|
-
**Related Projects:**
|
|
531
|
-
- [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) - Official MCP protocol docs
|
|
532
|
-
- [GitHub Spec-Kit](https://github.com/github/spec-kit) - GitHub spec-driven development toolkit
|
|
533
|
-
- [ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) - UI/UX design system philosophy source
|
|
534
|
-
- [json-render](https://github.com/vercel-labs/json-render) - JSON template rendering engine inspiration
|
|
535
|
-
- [uipro-cli](https://www.npmjs.com/package/uipro-cli) - UI/UX data source
|
|
536
|
-
|
|
537
|
-
---
|
|
538
|
-
|
|
539
|
-
**Made with ❤️ for AI-Powered Development**
|
|
710
|
+
|
|
711
|
+
---
|
|
712
|
+
|
|
713
|
+
## 🤝 Contributing
|
|
714
|
+
|
|
715
|
+
Issues and Pull Requests welcome!
|
|
716
|
+
|
|
717
|
+
**Improvement suggestions:**
|
|
718
|
+
- Add useful tools
|
|
719
|
+
- Optimize existing tool prompts
|
|
720
|
+
- Improve documentation and examples
|
|
721
|
+
- Fix bugs
|
|
722
|
+
|
|
723
|
+
---
|
|
724
|
+
|
|
725
|
+
## 📄 License
|
|
726
|
+
|
|
727
|
+
MIT License
|
|
728
|
+
|
|
729
|
+
---
|
|
730
|
+
|
|
731
|
+
## 🔗 Related Links
|
|
732
|
+
|
|
733
|
+
- **Author**: [Kyle (小墨)](https://www.bytezonex.com/)
|
|
734
|
+
- **GitHub**: [mcp-probe-kit](https://github.com/mybolide/mcp-probe-kit)
|
|
735
|
+
- **npm**: [mcp-probe-kit](https://www.npmjs.com/package/mcp-probe-kit)
|
|
736
|
+
- **Documentation**: [https://mcp-probe-kit.bytezonex.com](https://mcp-probe-kit.bytezonex.com/)
|
|
737
|
+
|
|
738
|
+
**Related Projects:**
|
|
739
|
+
- [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) - Official MCP protocol docs
|
|
740
|
+
- [GitHub Spec-Kit](https://github.com/github/spec-kit) - GitHub spec-driven development toolkit
|
|
741
|
+
- [ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) - UI/UX design system philosophy source
|
|
742
|
+
- [json-render](https://github.com/vercel-labs/json-render) - JSON template rendering engine inspiration
|
|
743
|
+
- [uipro-cli](https://www.npmjs.com/package/uipro-cli) - UI/UX data source
|
|
744
|
+
|
|
745
|
+
---
|
|
746
|
+
|
|
747
|
+
**Made with ❤️ for AI-Powered Development**
|