registerMcpTools method
Register tools from an MCP server.
Each MCP tool is wrapped in a ToolRegistration with ToolCategory.mcp and the server info attached.
Implementation
void registerMcpTools(List<Tool> mcpTools) {
for (final tool in mcpTools) {
register(tool, category: ToolCategory.mcp);
}
}