forked from domdomegg/airtable-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.85 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
{
"name": "aitable-mcp-server",
"version": "0.1.0",
"description": "AITable Model Context Protocol Server, for allowing AI systems to interact with your AITable databases",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "git+https://github.com/texonica/aitable-mcp-server.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": "dist/index.js",
"scripts": {
"start": "npm run build && node -r dotenv/config ./dist/index.js",
"serve": "AITABLE_API_KEY=$(grep AITABLE_API_KEY .env | cut -d= -f2) node ./dist/index.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json && shx chmod +x dist/index.js",
"build:watch": "nodemon --watch src --ext ts --exec \"npm run build\"",
"prepublishOnly": "npm run clean && npm run build",
"debug": "node test-debug.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"apitable": "^1.3.0",
"dotenv": "^16.4.7",
"node-fetch": "^3.3.2",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.1.3",
"@types/node": "^22.10.2",
"eslint": "^8.57.0",
"eslint-config-domdomegg": "^1.2.3",
"nodemon": "^3.1.7",
"shx": "^0.3.4",
"tsconfig-domdomegg": "^1.0.0",
"typescript": "^5.7.2",
"vitest": "^3.0.7"
},
"eslintConfig": {
"extends": [
"eslint-config-domdomegg"
],
"rules": {
"import/extensions": [
"error",
"always"
]
}
},
"keywords": [],
"bugs": {
"url": "https://github.com/texonica/aitable-mcp-server/issues"
},
"homepage": "https://github.com/texonica/aitable-mcp-server#readme"
}