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

Function isToolUnavailable

apps/sim/lib/mcp/tool-validation.ts:113–120  ·  view source on GitHub ↗
(issue: McpToolIssue | null)

Source from the content-addressed store, hash-verified

111}
112
113export function isToolUnavailable(issue: McpToolIssue | null): boolean {
114 if (!issue) return false
115 return (
116 issue.type === 'server_not_found' ||
117 issue.type === 'server_error' ||
118 issue.type === 'tool_not_found'
119 )
120}

Callers 2

tool-input.tsxFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected