(serverId: string, toolName: string)
| 179 | * Create standardized MCP tool ID from server ID and tool name |
| 180 | */ |
| 181 | export function createMcpToolId(serverId: string, toolName: string): string { |
| 182 | const normalizedServerId = isMcpTool(serverId) ? serverId : `${MCP.TOOL_PREFIX}${serverId}` |
| 183 | return `${normalizedServerId}-${toolName}` |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Parse MCP tool ID to extract server ID and tool name |
no test coverage detected