Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ test-all-methods.py
config.yaml
!config/config.example.yaml

# MCP Registry DNS-auth private key
key.pem
*.pem

# IDE
.idea/
.vscode/
Expand Down
49 changes: 49 additions & 0 deletions server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "com.greenapi/whatsapp",
"title": "Green API WhatsApp",
"description": "MCP gateway for WhatsApp via Green API — send/receive messages, manage contacts, groups and instances.",
"version": "0.1.2",
"repository": {
"url": "https://github.com/green-api/green-api-mcp-gateway",
"source": "github"
},
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.greenapi.com/mcp",
"headers": [
{
"name": "X-Instance-Id",
"description": "Green API instance ID",
"isRequired": true,
"isSecret": true
},
{
"name": "X-Api-Token",
"description": "Green API instance token",
"isRequired": true,
"isSecret": true
}
]
},
{
"type": "sse",
"url": "https://mcp.greenapi.com/sse",
"headers": [
{
"name": "X-Instance-Id",
"description": "Green API instance ID",
"isRequired": true,
"isSecret": true
},
{
"name": "X-Api-Token",
"description": "Green API instance token",
"isRequired": true,
"isSecret": true
}
]
}
]
}
Loading