Skip to content

Commit e21ba29

Browse files
jancurnclaude
authored andcommitted
Writing
1 parent e3b97df commit e21ba29

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/cli/output.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ export function formatToolCallExample(tool: Tool, sessionName?: string): string
616616
if (!properties || Object.keys(properties).length === 0) {
617617
// Tool takes no arguments — still show the simple call
618618
const session = sessionName || '<@session>';
619-
return `${chalk.bold('Example:')}\n mcpc ${session} tools-call ${tool.name}`;
619+
return `${chalk.bold('Call example:')}\n mcpc ${session} tools-call ${tool.name}`;
620620
}
621621

622622
const requiredNames = (schema?.required as string[]) || [];
@@ -638,7 +638,7 @@ export function formatToolCallExample(tool: Tool, sessionName?: string): string
638638
return `${name}:=${val}`;
639639
});
640640

641-
return `${chalk.bold('Example:')}\n mcpc ${session} tools-call ${tool.name} ${argParts.join(' ')}`;
641+
return `${chalk.bold('Call example:')}\n mcpc ${session} tools-call ${tool.name} ${argParts.join(' ')}`;
642642
}
643643

644644
/**

0 commit comments

Comments
 (0)