-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.93 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "make-mcp-server",
"version": "1.4.0",
"mcpName": "io.github.danishashko/make-mcp",
"description": "Unofficial MCP server for Make.com — build, validate & deploy automation scenarios via AI (community project, not affiliated with Make.com)",
"main": "dist/mcp/server.js",
"types": "dist/mcp/server.d.ts",
"type": "module",
"bin": {
"make-mcp-server": "./bin/make-mcp.js"
},
"files": [
"dist/",
"data/make-modules.db",
"bin/",
"scripts/",
"src/database/schema.sql",
"README.md",
"LICENSE",
".env.example"
],
"scripts": {
"build": "node scripts/build.js",
"build:tsc": "tsc",
"start": "node dist/mcp/server.js",
"start:dev": "tsx src/mcp/server.ts",
"scrape": "tsx src/scrapers/scrape-modules.ts",
"scrape:prod": "node dist/scrapers/scrape-modules.js",
"dev": "tsx watch src/mcp/server.ts",
"smoke:compat": "node scripts/smoke-compat.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "node scripts/prepublish.js",
"postinstall": "node bin/postinstall.js"
},
"keywords": [
"mcp",
"make",
"make.com",
"integromat",
"automation",
"scenario",
"ai",
"llm",
"model-context-protocol",
"claude",
"copilot"
],
"author": "Daniel Shashko (https://www.linkedin.com/in/daniel-shashko/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/danishashko/make-mcp.git"
},
"homepage": "https://github.com/danishashko/make-mcp#readme",
"bugs": {
"url": "https://github.com/danishashko/make-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"axios": "^1.13.4",
"better-sqlite3": "^12.6.2",
"dotenv": "^17.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}