Skip to content

Commit 23ceece

Browse files
authored
Merge pull request #5 from green-api/chore/mcp-registry-publish
chore: add MCP Registry server.json for com.greenapi/whatsapp
2 parents 599327f + 1e65b0d commit 23ceece

2 files changed

Lines changed: 53 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ test-all-methods.py
1212
config.yaml
1313
!config/config.example.yaml
1414

15+
# MCP Registry DNS-auth private key
16+
key.pem
17+
*.pem
18+
1519
# IDE
1620
.idea/
1721
.vscode/

server.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3+
"name": "com.greenapi/whatsapp",
4+
"title": "Green API WhatsApp",
5+
"description": "MCP gateway for WhatsApp via Green API — send/receive messages, manage contacts, groups and instances.",
6+
"version": "0.1.2",
7+
"repository": {
8+
"url": "https://github.com/green-api/green-api-mcp-gateway",
9+
"source": "github"
10+
},
11+
"remotes": [
12+
{
13+
"type": "streamable-http",
14+
"url": "https://mcp.greenapi.com/mcp",
15+
"headers": [
16+
{
17+
"name": "X-Instance-Id",
18+
"description": "Green API instance ID",
19+
"isRequired": true,
20+
"isSecret": true
21+
},
22+
{
23+
"name": "X-Api-Token",
24+
"description": "Green API instance token",
25+
"isRequired": true,
26+
"isSecret": true
27+
}
28+
]
29+
},
30+
{
31+
"type": "sse",
32+
"url": "https://mcp.greenapi.com/sse",
33+
"headers": [
34+
{
35+
"name": "X-Instance-Id",
36+
"description": "Green API instance ID",
37+
"isRequired": true,
38+
"isSecret": true
39+
},
40+
{
41+
"name": "X-Api-Token",
42+
"description": "Green API instance token",
43+
"isRequired": true,
44+
"isSecret": true
45+
}
46+
]
47+
}
48+
]
49+
}

0 commit comments

Comments
 (0)