@getmikk/mcp-server 1.7.0 → 1.8.1
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 +5 -2
- package/dist/index.cjs +1672 -1185
- package/dist/index.cjs.map +4 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -70,16 +70,18 @@ mikk-mcp /path/to/project
|
|
|
70
70
|
|
|
71
71
|
---
|
|
72
72
|
|
|
73
|
-
## Tools (
|
|
73
|
+
## Tools (15)
|
|
74
74
|
|
|
75
75
|
All tools read from the lock file (`mikk.lock.json`) — fast, no re-parsing.
|
|
76
76
|
|
|
77
77
|
| Tool | Purpose |
|
|
78
78
|
|---|---|
|
|
79
79
|
| `mikk_get_project_overview` | Modules, function counts, tech stack, constraints |
|
|
80
|
+
| `mikk_get_session_context` | **One-shot AI session start** — get project overview, recent changes, hot modules, and constraint status instantly |
|
|
81
|
+
| `mikk_get_changes` | What files changed since the last codebase analysis |
|
|
80
82
|
| `mikk_query_context` | Ask an architecture question — returns graph-traced context with call chains |
|
|
81
83
|
| `mikk_impact_analysis` | Blast radius of changing a specific file |
|
|
82
|
-
| `mikk_before_edit` | **Call before editing any file** — exported functions at risk,
|
|
84
|
+
| `mikk_before_edit` | **Call before editing any file** — exported functions at risk, actual boundary constraint violations, full blast radius |
|
|
83
85
|
| `mikk_find_usages` | Every function that calls a specific function — essential before renaming |
|
|
84
86
|
| `mikk_list_modules` | All declared modules with file/function counts |
|
|
85
87
|
| `mikk_get_module_detail` | Functions, files, exported API, and internal call graph for a module |
|
|
@@ -88,6 +90,7 @@ All tools read from the lock file (`mikk.lock.json`) — fast, no re-parsing.
|
|
|
88
90
|
| `mikk_semantic_search` | **Natural-language semantic search** using local vector embeddings (Xenova/all-MiniLM-L6-v2). Query: *"validate a JWT token"* returns functions ranked by semantic similarity (e.g. `verifyToken`, `validateJwt`). Requires optional `@xenova/transformers` package. |
|
|
89
91
|
| `mikk_get_constraints` | All architectural constraints and design decisions |
|
|
90
92
|
| `mikk_get_file` | Read raw source of any project file (with path traversal guard) |
|
|
93
|
+
| `mikk_read_file` | Read raw source, scoped only to specific functions to save token context |
|
|
91
94
|
| `mikk_get_routes` | Detected HTTP routes (Express / Koa / Hono style) |
|
|
92
95
|
|
|
93
96
|
### Staleness warning
|