-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
50 lines (50 loc) · 1.52 KB
/
server.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.danishashko/make-mcp",
"description": "Unofficial MCP server for Make.com automation - build, validate & deploy scenarios via AI",
"repository": {
"url": "https://github.com/danishashko/make-mcp",
"source": "github"
},
"version": "1.3.4",
"packages": [
{
"registryType": "npm",
"identifier": "make-mcp-server",
"version": "1.3.4",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "Make.com API key for scenario deployment (optional - only needed for create_scenario tool)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "MAKE_API_KEY"
},
{
"description": "Make.com Team ID for scenario deployment (optional)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "MAKE_TEAM_ID"
},
{
"description": "Make.com API URL - defaults to https://eu1.make.com/api/v2 (optional)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "MAKE_API_URL"
},
{
"description": "Log level - error, info, or debug (optional, defaults to error)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "LOG_LEVEL"
}
]
}
]
}