-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.47 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.47 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
{
"name": "airtable-mcp-server",
"version": "1.13.0",
"description": "A Model Context Protocol server that provides read and write access to Airtable databases. This server enables LLMs to inspect database schemas, then read and write records.",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "https://github.com/domdomegg/airtable-mcp-server.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": "dist/main.js",
"mcpName": "io.github.domdomegg/airtable-mcp-server",
"scripts": {
"start": "npm run build && node ./dist/main.js",
"start:http": "npm run build && MCP_TRANSPORT=http node ./dist/main.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json",
"build:watch": "nodemon --watch src --ext ts --exec \"npm run build\"",
"build:mcpb": "./build-mcpb.sh",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"express": "^5.1.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@tsconfig/node-lts": "^24.0.0",
"@types/express": "^5.0.3",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"eslint-config-domdomegg": "^2.0.9",
"nodemon": "^3.1.11",
"tsconfig-domdomegg": "^1.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}