@anthropologies/claudestory 0.1.5 → 0.1.6
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 +6 -6
- package/dist/cli.js +3121 -2495
- package/dist/index.d.ts +1 -0
- package/dist/index.js +21 -8
- package/dist/mcp.js +40 -25
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,22 +90,22 @@ 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 -- npx -y @anthropologies/claudestory --mcp
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
-
|
|
101
|
+
That's it. No global install required. Claude Code will spawn the MCP server automatically.
|
|
102
|
+
|
|
103
|
+
For a specific project root (recommended when working across multiple projects):
|
|
102
104
|
|
|
103
105
|
```bash
|
|
104
|
-
claude mcp add claudestory -- env CLAUDESTORY_PROJECT_ROOT=/path/to/
|
|
106
|
+
claude mcp add claudestory -- env CLAUDESTORY_PROJECT_ROOT=/path/to/project npx -y @anthropologies/claudestory --mcp
|
|
105
107
|
```
|
|
106
108
|
|
|
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.
|
|
108
|
-
|
|
109
109
|
### MCP Tools
|
|
110
110
|
|
|
111
111
|
| Tool | Description |
|