@contextual-io/cli 0.8.0 → 0.8.2

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 CHANGED
@@ -20,7 +20,7 @@ $ npm install -g @contextual-io/cli
20
20
  $ ctxl COMMAND
21
21
  running command...
22
22
  $ ctxl (--version)
23
- @contextual-io/cli/0.8.0 linux-x64 node-v25.9.0
23
+ @contextual-io/cli/0.8.2 linux-x64 node-v25.9.0
24
24
  $ ctxl --help [COMMAND]
25
25
  USAGE
26
26
  $ ctxl COMMAND
@@ -273,9 +273,9 @@ DESCRIPTION
273
273
  Manage local MCP server commands. Start with 'ctxl mcp serve' to run the local MCP bridge.
274
274
 
275
275
  EXAMPLES
276
- $ ctxl mcp
276
+ $ ctxl mcp serve
277
277
 
278
- $ ctxl mcp flow-editor --flow my-flow-id
278
+ $ ctxl mcp serve flow-editor --flow my-flow-id
279
279
  ```
280
280
 
281
281
  ## `ctxl mcp serve [INTERFACE]`
@@ -3,8 +3,8 @@ export default class Mcp extends BaseConfigCommand {
3
3
  static args = {};
4
4
  static description = "Manage local MCP server commands. Start with 'ctxl mcp serve' to run the local MCP bridge.";
5
5
  static examples = [
6
- "<%= config.bin %> <%= command.id %>",
7
- "<%= config.bin %> <%= command.id %> flow-editor --flow my-flow-id",
6
+ "<%= config.bin %> <%= command.id %> serve",
7
+ "<%= config.bin %> <%= command.id %> serve flow-editor --flow my-flow-id",
8
8
  ];
9
9
  static flags = {};
10
10
  static usage = [
@@ -270,8 +270,8 @@
270
270
  "args": {},
271
271
  "description": "Manage local MCP server commands. Start with 'ctxl mcp serve' to run the local MCP bridge.",
272
272
  "examples": [
273
- "<%= config.bin %> <%= command.id %>",
274
- "<%= config.bin %> <%= command.id %> flow-editor --flow my-flow-id"
273
+ "<%= config.bin %> <%= command.id %> serve",
274
+ "<%= config.bin %> <%= command.id %> serve flow-editor --flow my-flow-id"
275
275
  ],
276
276
  "flags": {},
277
277
  "hasDynamicHelp": false,
@@ -1367,5 +1367,5 @@
1367
1367
  ]
1368
1368
  }
1369
1369
  },
1370
- "version": "0.8.0"
1370
+ "version": "0.8.2"
1371
1371
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@contextual-io/cli",
3
3
  "description": "Contextual CLI",
4
- "version": "0.8.0",
4
+ "version": "0.8.2",
5
5
  "author": "Nasser Oloumi",
6
6
  "bin": {
7
7
  "ctxl": "./bin/run.js"