(serverId: string, toolName: string)
| 45 | * Create standardized MCP tool ID from server ID and tool name |
| 46 | */ |
| 47 | export function createMcpToolId(serverId: string, toolName: string): string { |
| 48 | const normalizedServerId = isMcpTool(serverId) ? serverId : `${MCP.TOOL_PREFIX}${serverId}` |
| 49 | return `${normalizedServerId}-${toolName}` |
| 50 | } |
no test coverage detected