Skip to content

Commit 3b5cbfa

Browse files
committed
feat: add Global Chat MCP Server
Cross-protocol AI agent discovery server. Search and register agents across MCP, A2A, and agents.txt protocols. Aggregates 100K+ agents from 15+ registries. npm: @global-chat/mcp-server Repository: https://github.com/nicobailon/global-chat Signed-off-by: pumanitro <pumanitro@gmail.com>
1 parent 6b3bc6f commit 3b5cbfa

1 file changed

Lines changed: 58 additions & 0 deletions

File tree

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "io.global-chat-mcp-npx",
4+
"name": "Global Chat MCP Server",
5+
"alias": "global-chat",
6+
"description": "Cross-protocol AI agent discovery. Search and register agents across MCP, A2A, and agents.txt protocols. Aggregates 100K+ agents from 15+ registries into a single searchable interface.",
7+
"icon": "https://global-chat.io/icon-512.png",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools",
11+
"search-web"
12+
],
13+
"tags": [
14+
"ai-agents",
15+
"mcp",
16+
"agent-discovery",
17+
"agents-txt",
18+
"a2a",
19+
"registry",
20+
"developer-tools"
21+
],
22+
23+
"transport": {
24+
"type": "stdio",
25+
"command": "npx",
26+
"args": [
27+
"-y",
28+
"@global-chat/mcp-server"
29+
]
30+
},
31+
32+
"auth": {
33+
"type": "none"
34+
},
35+
36+
"contributor": {
37+
"name": "nicobailon",
38+
"github": "nicobailon",
39+
"url": "https://global-chat.io"
40+
},
41+
42+
"links": {
43+
"repository": "https://github.com/nicobailon/global-chat",
44+
"homepage": "https://global-chat.io",
45+
"documentation": "https://github.com/nicobailon/global-chat#mcp-server"
46+
},
47+
48+
"platforms": [
49+
"all"
50+
],
51+
52+
"capabilities": {
53+
"tools": true,
54+
"resources": false,
55+
"prompts": false,
56+
"read_only_mode": true
57+
}
58+
}

0 commit comments

Comments
 (0)