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