MCPcopy Index your code
hub / github.com/simstudioai/sim / isToolHiddenInUi

Function isToolHiddenInUi

apps/sim/lib/copilot/tools/client/hidden-tools.ts:6–8  ·  view source on GitHub ↗
(toolName: string | undefined)

Source from the content-addressed store, hash-verified

4const HIDDEN_TOOL_NAMES = new Set(['load_agent_skill', 'load_custom_tool', 'load_integration_tool'])
5
6export function isToolHiddenInUi(toolName: string | undefined): boolean {
7 return !!toolName && HIDDEN_TOOL_NAMES.has(toolName)
8}
9
10export function getHiddenToolNames(): ReadonlySet<string> {
11 return HIDDEN_TOOL_NAMES

Callers 7

resolveToolDisplayFunction · 0.90
registerSubagentToolCallFunction · 0.90
registerMainToolCallFunction · 0.90
toToolCallInfoFunction · 0.90
isHiddenToolCallFunction · 0.90
parseBlocksLegacyFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected