Global Chat is a cross-protocol AI agent discovery platform that aggregates MCP servers and AI agents from 6+ registries into a single searchable directory. This skill helps you find the right MCP server, A2A agent, or agents.txt endpoint for any task by searching across 18,000+ indexed entries. It also provides an MCP server (@global-chat/mcp-server) for programmatic access to the directory from any MCP-compatible client.
Install the Global Chat MCP server to search the directory programmatically from Claude Code, Cursor, or any MCP client.
npm install -g @global-chat/mcp-server
Add to your MCP client configuration:
{
"mcpServers": {
"global-chat": {
"command": "npx",
"args": ["-y", "@global-chat/mcp-server"]
}
}
}
Then ask your agent to search for tools:
Search Global Chat for MCP servers that handle PostgreSQL database queries.
Browse the full directory at https://global-chat.io:
If you maintain an agents.txt file, use the free validator:
You: "Find MCP servers that can convert PDF files to text"
Agent (via Global Chat MCP): Searching across 6 registries...
- @anthropic/pdf-tools (mcpservers.org) — PDF parsing and text extraction
- pdf-converter-mcp (mcp.so) — Convert PDF to text, markdown, or HTML
- ...
You: "What A2A agents are available for code review?"
Agent (via Global Chat MCP): Found 12 A2A agents for code review across 3 registries...
You: "How many registries list tools for Kubernetes management?"
Agent (via Global Chat MCP): 4 registries carry Kubernetes-related agents (23 total entries)...
Problem: Search returns too many results Solution: Add protocol or registry filters to narrow the scope
Problem: MCP server not connecting
Solution: Ensure npx is available and run npx -y @global-chat/mcp-server manually first to verify
@mcp-client - For general MCP client setup and configuration@agent-orchestration-multi-agent-optimize - For orchestrating multiple discovered agents@agent-memory-mcp - For persisting discovered agent information across sessions