@global-chat/mcp-server
v0.1.1
Published
MCP server for global-chat.io — AI agent discovery, directory search, and agents.txt validation
Maintainers
Readme
global-chat MCP Server
An MCP (Model Context Protocol) server that provides AI agent discovery tools powered by global-chat.io.
Tools
| Tool | Description |
|------|-------------|
| validate_agents_txt | Validate an agents.txt file by URL or raw content |
| list_agents | List all registered AI agents, optionally filtered by type |
| search_agents | Search agents by name, description, or capabilities |
| register_agent | Register a new AI agent in the directory |
Installation
npm install -g @global-chat/mcp-serverUsage with Claude Desktop
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"global-chat": {
"command": "npx",
"args": ["-y", "@global-chat/mcp-server"]
}
}
}Using a custom API base URL
{
"mcpServers": {
"global-chat": {
"command": "npx",
"args": ["-y", "@global-chat/mcp-server"],
"env": {
"GLOBAL_CHAT_BASE_URL": "https://your-instance.example.com"
}
}
}
}Usage with Claude Code
claude mcp add global-chat -- npx -y @global-chat/mcp-serverDevelopment
git clone <repo-url>
cd mcp-server
npm install
npm run buildRun locally:
node dist/index.jsConfiguration
| Environment Variable | Default | Description |
|---------------------|---------|-------------|
| GLOBAL_CHAT_BASE_URL | https://global-chat.io | Base URL for the global-chat API |
License
MIT
