Skip to content

Commit 4f99562

Browse files
committed
feat: register mcp command
1 parent 1079bba commit 4f99562

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/commands/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@ import process from "node:process";
22
import { cli } from "gunshi";
33
import { description, name, version } from "../../package.json";
44
import { dailyCommand } from "./daily.ts";
5+
import { mcpCommand } from "./mcp.ts";
56
import { sessionCommand } from "./session.ts";
67

78
// Create subcommands map
89
const subCommands = new Map();
910
subCommands.set("daily", dailyCommand);
1011
subCommands.set("session", sessionCommand);
12+
subCommands.set("mcp", mcpCommand);
1113

1214
const mainCommand = dailyCommand;
1315

0 commit comments

Comments
 (0)