@anthropologies/claudestory 0.1.5 → 0.1.7
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 +3 -9
- package/dist/cli.js +3093 -2459
- package/dist/index.d.ts +1 -0
- package/dist/index.js +21 -8
- package/dist/mcp.js +71 -48
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,21 +90,15 @@ All commands support `--format json|md` (default: `md`).
|
|
|
90
90
|
|
|
91
91
|
## MCP Server
|
|
92
92
|
|
|
93
|
-
The MCP server provides
|
|
93
|
+
The MCP server provides 19 tools for Claude Code integration. It imports the same TypeScript modules as the CLI directly — no subprocess spawning.
|
|
94
94
|
|
|
95
95
|
### Setup with Claude Code
|
|
96
96
|
|
|
97
97
|
```bash
|
|
98
|
-
claude mcp add claudestory --
|
|
98
|
+
claude mcp add claudestory -s user -- npx -y @anthropologies/claudestory --mcp
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
```bash
|
|
104
|
-
claude mcp add claudestory -- env CLAUDESTORY_PROJECT_ROOT=/path/to/your/project claudestory-mcp
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
Set `CLAUDESTORY_PROJECT_ROOT` to your project root (the directory containing `.story/`). This is strongly recommended for MCP since the server may launch from a tool-managed working directory.
|
|
101
|
+
That's it. One command, global — works in every project that has a `.story/` directory. No global install required. The MCP server auto-discovers the project root by walking up from the working directory.
|
|
108
102
|
|
|
109
103
|
### MCP Tools
|
|
110
104
|
|