Package:
@hexos/runtimeExtended tool information that includes server identification and name mapping.
Extends the base MCPToolInfo with serverName (which server provides this tool) and originalName (the tool’s name as defined by the MCP server before sanitization). The name field contains the sanitized version used when registering with LLM providers.
Used by MCPManager when aggregating tools across multiple servers.
interface MCPToolWithServer extends MCPToolInfo {
serverName: string;
originalName: string;
}- Extends:
MCPToolInfo