@letsrunit/mcp-server 0.13.2 → 0.14.0
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 +11 -0
- package/dist/index.js +73 -80409
- package/dist/index.js.map +1 -1
- package/dist/sessions-BYH3NJQG.js +72 -0
- package/dist/sessions-BYH3NJQG.js.map +1 -0
- package/dist/tools-SAB75FOF.js +518 -0
- package/dist/tools-SAB75FOF.js.map +1 -0
- package/package.json +8 -7
- package/src/bootstrap.ts +115 -0
- package/src/index.ts +6 -3
- package/src/tools/session-start.ts +3 -1
- package/dist/re2-EDMAKNVO.node +0 -0
package/README.md
CHANGED
|
@@ -50,6 +50,17 @@ args = ["-y", "@letsrunit/mcp-server@latest"]
|
|
|
50
50
|
}
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
## Project-local support files
|
|
54
|
+
|
|
55
|
+
Keep using the same MCP command (`npx -y @letsrunit/mcp-server@latest`).
|
|
56
|
+
|
|
57
|
+
At runtime, letsrunit checks the current project:
|
|
58
|
+
|
|
59
|
+
- If the project has `@letsrunit/mcp-server` installed, it hands off to that project-local server and loads support files/custom steps.
|
|
60
|
+
- If not, it stays in standalone mode and runs built-in letsrunit steps only.
|
|
61
|
+
|
|
62
|
+
So custom steps from `features/support/**` are available when `@letsrunit/mcp-server` is installed in that project.
|
|
63
|
+
|
|
53
64
|
## Tools
|
|
54
65
|
|
|
55
66
|
| Tool | Description |
|