-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 917 Bytes
/
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
36
37
38
39
40
41
42
43
{
"name": "@felores/airtable-mcp-server",
"version": "0.3.0",
"description": "An Airtable Model Context Protocol Server",
"type": "module",
"bin": {
"airtable-server": "build/index.js"
},
"files": [
"build",
"scripts"
],
"scripts": {
"build": "tsc && node scripts/post-build.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"axios": "^1.7.9"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"author": "Felipe Restrepo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/felores/airtable-mcp"
},
"keywords": [
"airtable",
"mcp",
"model-context-protocol",
"claude",
"api"
],
"engines": {
"node": ">=16.0.0"
}
}