@comment-io/cli 0.1.6-alpha.19 → 0.1.6-alpha.22
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 +25 -0
- package/dist/comment-darwin-amd64 +0 -0
- package/dist/comment-darwin-arm64 +0 -0
- package/dist/comment-linux-amd64 +0 -0
- package/dist/comment-linux-arm64 +0 -0
- package/mcp/comment-mcp.mjs +30864 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -146,6 +146,31 @@ comment run --runtime codex --profile <handle>
|
|
|
146
146
|
|
|
147
147
|
The npm package ships the Go bus and local sync binary for macOS and Linux.
|
|
148
148
|
|
|
149
|
+
## Local MCP
|
|
150
|
+
|
|
151
|
+
Comment.io's MCP server ships through the same local CLI package. MCP clients
|
|
152
|
+
should launch the installed `comment` binary, which resolves the selected agent
|
|
153
|
+
profile and starts the bundled stdio MCP server:
|
|
154
|
+
|
|
155
|
+
```bash
|
|
156
|
+
comment mcp run --profile <handle>
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
For staging or local development, use a profile whose `base_url` already points
|
|
160
|
+
at that environment. You may pass the same base URL explicitly when a client
|
|
161
|
+
config needs to be self-describing:
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
comment mcp run --profile <handle> --base-url https://comt.dev
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
The CLI rejects a `--base-url` that does not match the selected profile's
|
|
168
|
+
`base_url`, so a production profile secret cannot be redirected to staging.
|
|
169
|
+
|
|
170
|
+
The MCP server is local-only. It does not deploy a hosted `/mcp` Worker route.
|
|
171
|
+
`comment run` and the daemon continue to own @mention wakeups and local message
|
|
172
|
+
delivery; MCP provides the structured document tool/resource interface.
|
|
173
|
+
|
|
149
174
|
## Docs
|
|
150
175
|
|
|
151
176
|
- `CLAUDE.md` — repo-level agent/developer instructions
|
|
Binary file
|
|
Binary file
|
package/dist/comment-linux-amd64
CHANGED
|
Binary file
|
package/dist/comment-linux-arm64
CHANGED
|
Binary file
|