package.json•2.76 kB
{
"name": "@rashidazarang/airtable-mcp",
"version": "3.2.4",
"description": "Advanced AI-powered Airtable MCP server with TypeScript support, intelligent analytics, predictive modeling, and enterprise automation capabilities",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": "./dist/types/index.d.ts",
"./types/*": "./dist/types/*.d.ts"
},
"bin": {
"airtable-mcp": "./bin/airtable-mcp.js",
"airtable-mcp-cli": "./bin/airtable-crud-cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"start": "node dist/index.js",
"start:dev": "ts-node src/typescript/airtable-mcp-server.ts",
"start:js": "node src/javascript/airtable_simple_production.js",
"start:python": "python3 src/python/inspector_server.py",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e",
"test:types": "tsc --noEmit",
"lint": "eslint src/**/*.{js,ts}",
"lint:fix": "eslint src/**/*.{js,ts} --fix",
"format": "prettier --write \"src/**/*.{js,ts,json,md}\"",
"format:check": "prettier --check \"src/**/*.{js,ts,json,md}\"",
"dev": "nodemon --watch src --exec ts-node src/typescript/airtable-mcp-server.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"airtable",
"mcp",
"claude",
"claude-desktop",
"anthropic",
"ai",
"database",
"typescript",
"automation",
"enterprise",
"analytics"
],
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE",
"package.json",
"tsconfig.json"
],
"types": "dist/index.d.ts",
"author": "Rashid Azarang",
"license": "MIT",
"dependencies": {
"@smithery/cli": "^1.0.0",
"airtable": "^0.12.2",
"dotenv": "^16.0.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rashidazarang/airtable-mcp"
},
"bugs": {
"url": "https://github.com/rashidazarang/airtable-mcp/issues"
},
"homepage": "https://github.com/rashidazarang/airtable-mcp#readme"
}