Skip to content

Commit 2eb97e4

Browse files
committed
📦 NEW: CLI command
1 parent bd07675 commit 2eb97e4

File tree

1 file changed

+20
-17
lines changed

1 file changed

+20
-17
lines changed

packages/cli/src/utils/cli.ts

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,30 @@ const flags = {
1313
default: false,
1414
shortFlag: `d`,
1515
desc: `Print debug info`
16-
},
17-
agent: {
18-
type: `string`,
19-
shortFlag: `a`,
20-
desc: `Agent to deploy the script into`
21-
},
22-
file: {
23-
type: `string`,
24-
shortFlag: `f`,
25-
desc: `Script path to deploy`
26-
},
27-
key: {
28-
type: `string`,
29-
shortFlag: `k`,
30-
desc: `Langbase API key`
3116
}
17+
// agent: {
18+
// type: `string`,
19+
// shortFlag: `a`,
20+
// desc: `Agent to deploy the script into`
21+
// },
22+
// file: {
23+
// type: `string`,
24+
// shortFlag: `f`,
25+
// desc: `Script path to deploy`
26+
// },
27+
// key: {
28+
// type: `string`,
29+
// shortFlag: `k`,
30+
// desc: `Langbase API key`
31+
// }
3232
};
3333

3434
const commands = {
35-
auth: { desc: `Authenticate with Langbase` },
36-
deploy: { desc: `Deploy a script to Langbase` },
35+
'docs-mcp-server': {
36+
desc: `Start the Langbase docs MCP server`
37+
},
38+
// auth: { desc: `Authenticate with Langbase` },
39+
// deploy: { desc: `Deploy a script to Langbase` },
3740
help: { desc: `Print help info` }
3841
};
3942

0 commit comments

Comments
 (0)