-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Expand file tree
/
Copy pathserver.json
More file actions
51 lines (51 loc) · 1.57 KB
/
Copy pathserver.json
File metadata and controls
51 lines (51 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.ArnasDon/wacrm-mcp",
"description": "Drive a self-hosted wacrm WhatsApp CRM from Claude, Cursor and other MCP clients.",
"repository": {
"url": "https://github.com/ArnasDon/wacrm",
"source": "github",
"subfolder": "mcp-server"
},
"version": "0.1.1",
"packages": [
{
"registryType": "npm",
"identifier": "wacrm-mcp",
"version": "0.1.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "WACRM_BASE_URL",
"description": "Base URL of your wacrm instance, e.g. https://crm.example.com",
"isRequired": true,
"isSecret": false,
"format": "string"
},
{
"name": "WACRM_API_KEY",
"description": "wacrm API key (Settings → API keys). Its scopes decide what is allowed.",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "WACRM_ENABLE_WRITES",
"description": "Set to true to expose contact create/update and message sending. Read-only when unset.",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "WACRM_ENABLE_BROADCASTS",
"description": "Set to true to expose the mass-broadcast tool. Requires WACRM_ENABLE_WRITES.",
"isRequired": false,
"isSecret": false,
"format": "string"
}
]
}
]
}