-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 KB
/
package.json
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
{
"name": "@makehq/mcp-server",
"version": "0.5.0",
"description": "MCP server for interacting with Make automations",
"license": "MIT",
"author": "Make",
"repository": "github:integromat/make-mcp-server",
"homepage": "https://www.make.com",
"type": "module",
"bin": {
"mcp-server-make": "build/index.js"
},
"files": [
"build"
],
"scripts": {
"test": "jest --runInBand --forceExit --verbose false",
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^22.13.10",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}