-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1019 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1019 Bytes
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
{
"name": "@tooljet/mcp",
"version": "1.0.0",
"main": "build/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf build && NODE_ENV=development tsc && chmod 755 build/index.js",
"prepublishOnly": "npm run build"
},
"keywords": ["tooljet", "mcp", "model context protocol"],
"author": "ToolJet",
"license": "MIT",
"description": "ToolJet Model Context Protocol implementation",
"files": [
"build"
],
"bin": {
"tooljet-mcp": "./build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.14.0",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ToolJet/tooljet-mcp.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/ToolJet/tooljet-mcp/issues"
},
"homepage": "https://github.com/ToolJet/tooljet-mcp#readme"
}