package.json•1.42 kB
{
"name": "@jjwjr94/mcp-server-airtable",
"publishConfig": {
"access": "public"
},
"version": "1.0.0",
"description": "MCP Server for Airtable",
"repository": {
"type": "git",
"url": "git+https://github.com/jjwjr94/airtable-mcp.git"
},
"homepage": "https://github.com/jjwjr94/airtable-mcp",
"main": "dist/index-http.js",
"type": "module",
"bin": {
"mcp-server-airtable": "dist/index-http.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/index-http.js",
"start:http": "node dist/index-http.js",
"dev": "ts-node index.ts",
"dev:http": "ts-node index-http.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"inspector": "npx @modelcontextprotocol/inspector dist/index-http.js",
"postinstall": "npm run build"
},
"keywords": [
"airtable",
"mcp",
"anthropic"
],
"author": "James Wong",
"license": "MIT",
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.4.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.10.1",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.1",
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0"
}
}