-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.72 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
{
"name": "aitable-mcp",
"version": "1.0.0",
"description": "Model Context Protocol server for AITable",
"type": "module",
"main": "dist/stdio-server.js",
"types": "dist/stdio-server.d.ts",
"bin": {
"aitable-mcp": "./dist/stdio-server.js"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/stdio-server.d.ts",
"import": "./dist/stdio-server.js"
}
},
"scripts": {
"build": "node -e \"console.log('Compiling TypeScript...')\" && tsc && node -e \"require('fs').chmodSync('dist/stdio-server.js', '755')\" && node -e \"console.log('✓ Build completed successfully!')\"",
"dev": "tsc --watch",
"dev:http": "node dist/http-server.js",
"dev:vercel": "vercel dev",
"start": "node dist/stdio-server.js",
"inspector": "npx @modelcontextprotocol/inspector dist/stdio-server.js",
"clean": "rimraf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"aitable",
"aitable.ai"
],
"author": "hamchowderr",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hamchowderr/aitable-mcp.git"
},
"homepage": "https://github.com/hamchowderr/aitable-mcp#readme",
"bugs": {
"url": "https://github.com/hamchowderr/aitable-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"@vercel/node": "^5.5.6",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.18.0",
"form-data": "^4.0.4",
"mcp-handler": "^1.0.3",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"rimraf": "^5.0.0",
"tsx": "^4.19.2",
"typescript": "^5.0.0"
}
}