@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gmickel/gno",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Local semantic search for your documents. Index Markdown, PDF, and Office files with hybrid BM25 + vector search.",
5
5
  "keywords": [
6
6
  "embeddings",
@@ -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)"