import React from 'react'; import { Wrench } from 'lucide-react'; export function ToolsEmptyState({ loading, error, onGoToMcpServers }) { if (loading) { return (

Loading capabilities catalog...

); } if (error) { return (

Unable to load capabilities

Could not reach the agentic catalog.

{error}

); } return (

No capabilities registered

Register MCP servers or sync tools and A2A agents from Context Forge to see them here.

{onGoToMcpServers && ()}
); }