You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: release v3.0.16 with Memory & Cursor History toolset and multilingual docs sync
## New Features
**Memory & Cursor History Toolset (6 new tools)**
- read_memory_asset: Read stored memory assets from Qdrant
- memorize_asset: Store memory assets to Qdrant with Ollama/OpenAI-compatible embedding
- scan_and_extract_patterns: Scan codebase and extract patterns to memory system
- cursor_list_conversations: List local Cursor conversation history
- cursor_search_conversations: Search Cursor conversations by keyword
- cursor_read_conversation: Read full Cursor conversation content
- Support Qdrant vector storage with auto collection creation
- Support Windows/macOS/Linux local Cursor database reading
- Environment variables: MEMORY_QDRANT_URL, MEMORY_EMBEDDING_PROVIDER, MEMORY_EMBEDDING_URL, etc.
**Git Work Report Tool**
- git_work_report: Generate work reports from git history with author/time/branch filters
**UI/PRD Skill Bridge Integration**
- skill-bridge module: Unified detection and bridging for ui-ux-pro-max, interaction-design, frontend-design
- start_ui/start_product: Added Skill Bridge guidance blocks in output
## Documentation & I18n
**Multilingual Documentation Sync**
- Updated tool counts across all language versions (20→28 tools)
- Synced Memory & Cursor History toolset documentation to all languages
- Updated category counts: Code Analysis (3→4), Project Management (7→6)
- Added Memory & Cursor History category (6 tools) to all READMEs
- Completed de/es/fr/pt-BR README full sync with English version
- Enhanced ja/ko README with missing sections
**UI I18n Improvements**
- Completed docs/pages/getting-started.html i18n coverage
- Added missing i18n keys for Memory, Cursor History, and GitNexus sections
- Removed Chinese fallback text from all documentation pages
- Synced docs/i18n/*.json across en/ja/ko/zh-CN
## Metadata Updates
- tools-manifest.json: Updated to v3.0.16, 28 tools, new category structure
- CHANGELOG.md: Added v3.0.16 release notes
- README.md: Updated tool counts and categories
- docs/data/tools.js: Synced with new tool definitions
- Removed obsolete files: docs/debug-i18n.html, mcp-config.json
## Testing
- All 18 test suites passing
- 28 tool files generated in build/tools/
Co-authored-by: Kiro <kiro@cursor.sh>
<p><strong>Know the Context, Feed the Moment.</strong></p>
@@ -13,7 +13,7 @@
13
13
14
14
> **Talk is cheap, show me the Context.**
15
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 22 tools—it's a context-aware system that helps AI agents grasp what you're building.
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.
> 🚀 AI-Powered Complete Development Toolkit - Covering the Entire Development Lifecycle
26
26
27
-
A powerful MCP (Model Context Protocol) server providing **22 tools** covering the complete workflow from product analysis to final release (Requirements → Design → Development → Quality → Release), all tools support **structured output**.
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
28
29
29
**🎉 v3.0 Major Update**: Streamlined tool count, focus on core competencies, eliminate choice paralysis, let AI do more native work
30
30
@@ -39,15 +39,15 @@ A powerful MCP (Model Context Protocol) server providing **22 tools** covering t
-`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.
@@ -206,7 +298,7 @@ This mode performs 1-2 rounds of structured clarification before entering spec/f
206
298
207
299
### 🎨 UI/UX Pro Max
208
300
209
-
3 UI/UX tools with `start_ui` as the unified entry point:
301
+
4 UI/UX tools with `start_ui` as the unified entry point:
210
302
-`start_ui` - One-click UI development (supports intelligent mode) (orchestration tool)
211
303
-`ui_design_system` - Intelligent design system generation
212
304
-`ui_search` - UI/UX data search (BM25 algorithm)
@@ -339,6 +431,116 @@ Use in config file:
339
431
}
340
432
```
341
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:
0 commit comments