Skip to content

Commit 8f5e2f9

Browse files
authored
Mention advanced flag in setup (#25)
1 parent dc6811e commit 8f5e2f9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ export const setupMcpServer = async (): Promise<void> => {
501501
});
502502
console.log();
503503
showInfo(
504-
`To modify permissions, run: ${chalk.cyan(`${COMMAND_NAME} keys update "${selectedExistingMeta?.name}"`)}`
504+
`To modify permissions, run: ${chalk.cyan(`${COMMAND_NAME} keys update "${selectedExistingMeta?.name}" --advanced`)}`
505505
);
506506
} else {
507507
const keyManager = getKeyManager();

src/utils/command-info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const COMMAND_NAME = isNpx
2323
export const KEYS_COMMAND_TABLE: Array<[string, string]> = [
2424
[`${COMMAND_NAME} keys list`, "View all stored API keys"],
2525
[`${COMMAND_NAME} keys add`, "Add a new API key"],
26-
[`${COMMAND_NAME} keys update <name-or-id>`, "Update an existing key"],
26+
[`${COMMAND_NAME} keys update <name-or-id>`, "Update an existing key (use --advanced to modify permissions)"],
2727
[`${COMMAND_NAME} keys activate <name-or-id>`, "Switch to a different key"],
2828
[`${COMMAND_NAME} keys delete <name-or-id>`, "Remove a key by ID or name"],
2929
];

0 commit comments

Comments
 (0)