@gmickel/gno 1.5.0 → 1.5.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/package.json +1 -1
- package/src/cli/program.ts +0 -3
package/package.json
CHANGED
package/src/cli/program.ts
CHANGED
|
@@ -1165,8 +1165,6 @@ function wireRetrievalCommands(program: Command): void {
|
|
|
1165
1165
|
|
|
1166
1166
|
function wireMcpCommand(program: Command): void {
|
|
1167
1167
|
// mcp - Start MCP server (stdio transport) or manage MCP configuration
|
|
1168
|
-
// CRITICAL: helpOption(false) on server command prevents --help from writing
|
|
1169
|
-
// to stdout which would corrupt the JSON-RPC stream
|
|
1170
1168
|
const mcpCmd = program
|
|
1171
1169
|
.command("mcp")
|
|
1172
1170
|
.description("MCP server and configuration");
|
|
@@ -1175,7 +1173,6 @@ function wireMcpCommand(program: Command): void {
|
|
|
1175
1173
|
mcpCmd
|
|
1176
1174
|
.command("serve", { isDefault: true })
|
|
1177
1175
|
.description("Start MCP server (stdio transport)")
|
|
1178
|
-
.helpOption(false)
|
|
1179
1176
|
.option(
|
|
1180
1177
|
"--enable-write",
|
|
1181
1178
|
"Enable write operations (capture, add-collection, sync, remove-collection)"
|