@rashidazarang/airtable-mcp 1.2.1 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/QUICK_START.md ADDED
@@ -0,0 +1,60 @@
1
+ # Quick Start Guide for Claude Users
2
+
3
+ This guide provides simple instructions for getting the Airtable MCP working with Claude.
4
+
5
+ ## Step 1: Clone the repository
6
+
7
+ ```bash
8
+ git clone https://github.com/rashidazarang/airtable-mcp.git
9
+ cd airtable-mcp
10
+ ```
11
+
12
+ ## Step 2: Install dependencies
13
+
14
+ ```bash
15
+ npm install
16
+ pip install mcp
17
+ ```
18
+
19
+ ## Step 3: Configure Claude
20
+
21
+ In Claude settings, add a new MCP server with this configuration (adjust paths as needed):
22
+
23
+ ```json
24
+ {
25
+ "mcpServers": {
26
+ "airtable": {
27
+ "command": "python3",
28
+ "args": [
29
+ "/path/to/airtable-mcp/inspector_server.py",
30
+ "--token",
31
+ "YOUR_AIRTABLE_TOKEN",
32
+ "--base",
33
+ "YOUR_BASE_ID"
34
+ ]
35
+ }
36
+ }
37
+ }
38
+ ```
39
+
40
+ Replace:
41
+ - `/path/to/airtable-mcp/` with the actual path where you cloned the repository
42
+ - `YOUR_AIRTABLE_TOKEN` with your Airtable Personal Access Token
43
+ - `YOUR_BASE_ID` with your Airtable Base ID
44
+
45
+ ## Step 4: Restart Claude
46
+
47
+ After configuring, restart Claude and try these commands:
48
+
49
+ 1. "List the tables in my Airtable base"
50
+ 2. "Show me records from [table name]"
51
+
52
+ ## Troubleshooting
53
+
54
+ If you encounter issues:
55
+
56
+ 1. Check the Claude logs (click on the error message)
57
+ 2. Verify your Airtable token and base ID are correct
58
+ 3. Make sure you've specified the correct path to `inspector_server.py`
59
+
60
+ This version includes enhanced error handling to properly format JSON responses and avoid "Method not found" errors in Claude.
package/README.md CHANGED
@@ -1,225 +1,249 @@
1
- # Airtable MCP
1
+ # Airtable MCP Server
2
2
 
3
- ![Airtable](https://img.shields.io/badge/Airtable-18BFFF?style=for-the-badge&logo=Airtable&logoColor=white)
4
3
  [![smithery badge](https://smithery.ai/badge/@rashidazarang/airtable-mcp)](https://smithery.ai/server/@rashidazarang/airtable-mcp)
4
+ ![Airtable](https://img.shields.io/badge/Airtable-18BFFF?style=for-the-badge&logo=Airtable&logoColor=white)
5
+ [![MCP](https://img.shields.io/badge/MCP-1.2.4-green)](https://github.com/rashidazarang/airtable-mcp)
5
6
 
6
- > Connect your AI tools directly to Airtable. Query, create, update, and delete records using natural language. Features include base management, table operations, schema manipulation, record filtering, and data migration—all through a standardized MCP interface compatible with Cursor, Claude Desktop, Cline, Zed, and other Claude-powered editors.
7
+ A Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with your Airtable bases. Query, create, update, and delete records using natural language through a secure, standardized interface.
7
8
 
8
- This application is a powerful Airtable integration tool that enables AI-powered applications via Anthropic's Model Context Protocol (MCP) to access and manipulate Airtable data directly from your IDE.
9
+ ## 🔒 Security Notice
9
10
 
10
- ## Features
11
+ **Important**: Version 1.2.4 includes critical security fixes. If you used this MCP before January 2025, please see [SECURITY_NOTICE.md](./SECURITY_NOTICE.md) for important information about token rotation.
11
12
 
12
- - **Base Management**: List and select Airtable bases
13
- - **Table Operations**: Browse tables, fields, and records
14
- - **Data Access**: Read, create, update, and delete records
15
- - **Schema Management**: Export, compare, and update schemas
16
- - **Command-line Configuration**: Use API tokens directly through command-line parameters
17
- - **NPX Compatible**: Easy installation with a single command
18
- - **Smithery Integration**: One-click installation via Smithery
13
+ ## Features
19
14
 
20
- ## Architecture
15
+ - 🔍 **Natural Language Queries** - Ask questions about your data in plain English
16
+ - 📊 **Full CRUD Operations** - Create, read, update, and delete records
17
+ - 🏗️ **Schema Management** - View and understand your base structure
18
+ - 🔐 **Secure Authentication** - Uses environment variables for credentials
19
+ - 🚀 **Easy Setup** - Multiple installation options available
20
+ - ⚡ **Fast & Reliable** - Built with Node.js for optimal performance
21
21
 
22
- There are two core components used to access and manipulate Airtable data:
22
+ ## 📋 Prerequisites
23
23
 
24
- 1. **Airtable MCP Server**: A Python server that provides standardized tools for AI clients to interact with Airtable.
25
- 2. **MCP Client**: Any client that supports the Model Context Protocol (Cursor, Claude Desktop, Cline, Zed, etc.).
24
+ - Node.js 14+ installed on your system
25
+ - An Airtable account with a Personal Access Token
26
+ - Your Airtable Base ID
26
27
 
27
- ```
28
- ┌─────────────┐ ┌──────────────┐ ┌───────────────┐
29
- │ MCP Client ──► Airtable ──► │ Airtable │
30
- │ (e.g. │ ◄── │ MCP Server │ ◄── │ API │
31
- │ Cursor) │ │ │ │ │
32
- └─────────────┘ └──────────────┘ └───────────────┘
28
+ ## 🚀 Quick Start
29
+
30
+ ### Step 1: Get Your Airtable Credentials
31
+
32
+ 1. **Personal Access Token**: Visit [Airtable Account](https://airtable.com/account) → Create a token with the following scopes:
33
+ - `data.records:read`
34
+ - `data.records:write`
35
+ - `schema.bases:read`
36
+
37
+ 2. **Base ID**: Open your Airtable base and copy the ID from the URL:
38
+ ```
39
+ https://airtable.com/[BASE_ID]/...
40
+ ```
41
+
42
+ ### Step 2: Installation
43
+
44
+ Choose one of these installation methods:
45
+
46
+ #### Option A: Install via NPM (Recommended)
47
+
48
+ ```bash
49
+ npm install -g @rashidazarang/airtable-mcp
33
50
  ```
34
51
 
35
- Model Context Protocol (MCP) is a capability supported by Anthropic AI models that allows you to create custom tools for any compatible client. MCP clients like Claude Desktop, Cursor, Cline, or Zed can run an MCP server which "teaches" these clients about new tools they can use.
52
+ #### Option B: Clone from GitHub
36
53
 
37
- ## Important Updates (March 2025)
54
+ ```bash
55
+ git clone https://github.com/rashidazarang/airtable-mcp.git
56
+ cd airtable-mcp
57
+ npm install
58
+ ```
38
59
 
39
- This MCP has been updated to work with the latest MCP SDK version. The new implementation uses:
60
+ ### Step 3: Set Up Environment Variables
40
61
 
41
- - **inspector_server.py**: A new server implementation compatible with MCP SDK 1.4.1+
42
- - Updated configuration for both Cursor and Smithery integration
43
- - Python 3.10+ compatibility
62
+ Create a `.env` file in your project directory:
44
63
 
45
- ## Installation
64
+ ```env
65
+ AIRTABLE_TOKEN=your_personal_access_token_here
66
+ AIRTABLE_BASE_ID=your_base_id_here
67
+ ```
46
68
 
47
- ### Prerequisites
69
+ **Security Note**: Never commit `.env` files to version control!
48
70
 
49
- - Node.js 14+
50
- - Python 3.10+ (automatically detected)
51
- - Airtable API token
52
- - A compatible MCP client (Cursor, Claude Desktop, etc.)
71
+ ### Step 4: Configure Your MCP Client
53
72
 
54
- ### Recommended: Using Smithery via NPX (Easiest Method)
73
+ #### For Claude Desktop
55
74
 
56
- The simplest way to use this MCP is through Smithery via NPX. This handles all dependencies and configuration automatically.
75
+ Add to your Claude Desktop configuration file:
57
76
 
58
- 1. Configure your MCP client by adding the following to your MCP configuration file (e.g., `~/.cursor/mcp.json`):
77
+ **MacOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
78
+ **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
59
79
 
60
80
  ```json
61
81
  {
62
82
  "mcpServers": {
63
- "airtable-mcp": {
83
+ "airtable": {
64
84
  "command": "npx",
65
85
  "args": [
66
- "-y",
67
- "@smithery/cli@latest",
68
- "run",
69
86
  "@rashidazarang/airtable-mcp",
70
- "--config",
71
- "{\"airtable_token\":\"YOUR_AIRTABLE_TOKEN\\\"\",\"base_id\":\"YOUR_BASE_ID\"}"
87
+ "--token",
88
+ "YOUR_AIRTABLE_TOKEN",
89
+ "--base",
90
+ "YOUR_BASE_ID"
72
91
  ]
73
92
  }
74
93
  }
75
94
  }
76
95
  ```
77
96
 
78
- 2. Replace `YOUR_AIRTABLE_TOKEN\"` with your Airtable API token (maintaining the backslash and quote), and `YOUR_BASE_ID` with your Airtable base ID.
79
- 3. Restart your MCP client to load the new tools.
97
+ #### For Environment Variables (More Secure)
80
98
 
81
- ### Smithery Web Installation (Alternative)
82
-
83
- Another easy installation method:
99
+ ```json
100
+ {
101
+ "mcpServers": {
102
+ "airtable": {
103
+ "command": "npx",
104
+ "args": ["@rashidazarang/airtable-mcp"],
105
+ "env": {
106
+ "AIRTABLE_TOKEN": "YOUR_AIRTABLE_TOKEN",
107
+ "AIRTABLE_BASE_ID": "YOUR_BASE_ID"
108
+ }
109
+ }
110
+ }
111
+ }
112
+ ```
84
113
 
85
- 1. Visit [Smithery](https://smithery.ai)
86
- 2. Search for "@rashidazarang/airtable-mcp"
87
- 3. Click "Install" and follow the prompts
114
+ ### Step 5: Restart Your MCP Client
88
115
 
89
- ### Traditional NPX Installation (Advanced)
116
+ After configuration, restart Claude Desktop or your MCP client to load the Airtable server.
90
117
 
91
- If you prefer a more traditional approach:
118
+ ## 🎯 Usage Examples
92
119
 
93
- ```bash
94
- # Install globally
95
- npm install -g airtable-mcp
120
+ Once configured, you can interact with your Airtable data naturally:
96
121
 
97
- # Or run directly with npx
98
- npx airtable-mcp --token "your_airtable_token" --base "your_base_id"
122
+ ```
123
+ "Show me all records in the Projects table"
124
+ "Create a new task with priority 'High' and due date tomorrow"
125
+ "Update the status of task ID rec123 to 'Completed'"
126
+ "Delete all records where status is 'Archived'"
127
+ "What tables are in my base?"
99
128
  ```
100
129
 
101
- ### MCP Client Integration
130
+ ## 🛠️ Available Tools
102
131
 
103
- For detailed instructions on integrating with specific MCP clients, see:
132
+ | Tool | Description |
133
+ |------|-------------|
134
+ | `list_tables` | Get all tables in your base |
135
+ | `list_records` | Query records with optional filtering |
136
+ | `create_record` | Add new records to a table |
137
+ | `update_record` | Modify existing records |
138
+ | `delete_record` | Remove records from a table |
104
139
 
105
- - [Claude Integration Guide](CLAUDE_INTEGRATION.md) - Setup instructions for Claude Desktop, Cursor, Cline, and other clients
106
- - [Smithery Setup](https://smithery.ai/server/@rashidazarang/airtable-mcp) - One-click installation via Smithery
140
+ ## 🔧 Advanced Configuration
107
141
 
108
- ### Configure Your MCP Client
142
+ ### Using with Smithery Cloud
109
143
 
110
- For Cursor, update your `~/.cursor/mcp.json` file:
144
+ For cloud-hosted MCP servers:
111
145
 
112
146
  ```json
113
147
  {
114
148
  "mcpServers": {
115
- "airtable-tools": {
149
+ "airtable": {
116
150
  "command": "npx",
117
151
  "args": [
118
- "airtable-mcp",
119
- "--token", "your_airtable_token",
120
- "--base", "your_base_id"
152
+ "@smithery/cli",
153
+ "run",
154
+ "@rashidazarang/airtable-mcp",
155
+ "--token",
156
+ "YOUR_TOKEN",
157
+ "--base",
158
+ "YOUR_BASE_ID"
121
159
  ]
122
160
  }
123
161
  }
124
162
  }
125
163
  ```
126
164
 
127
- Restart your MCP client to load the new tools.
165
+ ### Direct Node.js Execution
128
166
 
129
- ### Manual Installation (Advanced)
167
+ If you cloned the repository:
130
168
 
131
- If you prefer to clone the repository and install manually:
132
-
133
- 1. Clone this repository:
134
- ```bash
135
- git clone https://github.com/rashidazarang/airtable-mcp.git
136
- cd airtable-mcp
137
- ```
138
-
139
- 2. Install dependencies:
140
- ```bash
141
- pip install -r requirements.txt
142
- ```
143
-
144
- 3. Run the server:
145
- ```bash
146
- python3.10 inspector_server.py --token "your_airtable_token" --base "your_base_id"
147
- ```
148
-
149
- ## Testing Your Setup
150
-
151
- To verify your Airtable connection works correctly, you can use the included test script:
152
-
153
- ```bash
154
- python3.10 test_client.py
169
+ ```json
170
+ {
171
+ "mcpServers": {
172
+ "airtable": {
173
+ "command": "node",
174
+ "args": [
175
+ "/path/to/airtable-mcp/airtable_simple.js",
176
+ "--token",
177
+ "YOUR_TOKEN",
178
+ "--base",
179
+ "YOUR_BASE_ID"
180
+ ]
181
+ }
182
+ }
183
+ }
155
184
  ```
156
185
 
157
- This will directly test your Airtable API access and list your bases and table schemas.
158
-
159
- ## Available Tools
160
-
161
- | Tool Name | Description |
162
- |-----------|-------------|
163
- | `list_bases` | List all accessible Airtable bases |
164
- | `list_tables` | List all tables in the specified or default base |
165
- | `list_records` | List records from a table with optional filtering |
166
- | `get_record` | Get a specific record from a table |
167
- | `create_records` | Create records in a table from JSON string |
168
- | `update_records` | Update records in a table from JSON string |
169
- | `set_base_id` | Set the current Airtable base ID |
170
-
171
- ## License
172
-
173
- MIT
186
+ ## 🧪 Testing
174
187
 
175
- ## Contributing
188
+ Run the test suite to verify your setup:
176
189
 
177
- Contributions are welcome! Please feel free to submit a Pull Request.
178
-
179
- ## Using with Claude and Windsurf
190
+ ```bash
191
+ # Set environment variables first
192
+ export AIRTABLE_TOKEN=your_token
193
+ export AIRTABLE_BASE_ID=your_base_id
180
194
 
181
- ### Version 1.2.0 Update: Improved Compatibility
195
+ # Run tests
196
+ npm test
197
+ ```
182
198
 
183
- The latest version includes important fixes to address common issues:
199
+ ## 🐛 Troubleshooting
184
200
 
185
- 1. **AbortController Compatibility**: Added polyfill for Node.js versions < 15.0.0
186
- 2. **JSON Parsing Improvements**: Enhanced handling of malformed JSON configurations
187
- 3. **Windsurf Support**: Special configuration templates for Windsurf users
201
+ ### "Connection Refused" Error
202
+ - Ensure the MCP server is running
203
+ - Check that port 8010 is not blocked
204
+ - Restart your MCP client
188
205
 
189
- ### Common Issues and Solutions
206
+ ### "Invalid Token" Error
207
+ - Verify your Personal Access Token is correct
208
+ - Check that the token has the required scopes
209
+ - Ensure no extra spaces in your credentials
190
210
 
191
- #### JSON Format Errors
211
+ ### "Base Not Found" Error
212
+ - Confirm your Base ID is correct
213
+ - Check that your token has access to the base
192
214
 
193
- If you see errors like `Unexpected token 'F', "Found & ig"... is not valid JSON`, try:
215
+ ### Port Conflicts
216
+ If port 8010 is in use:
217
+ ```bash
218
+ lsof -ti:8010 | xargs kill -9
219
+ ```
194
220
 
195
- 1. **Use Individual Parameters**:
196
- ```
197
- npx -y @smithery/cli@latest run @rashidazarang/airtable-mcp --token YOUR_TOKEN --base YOUR_BASE_ID
198
- ```
221
+ ## 📚 Documentation
199
222
 
200
- 2. **For Windsurf Users**: Use the template in `examples/windsurf_mcp_config.json`
223
+ - [Detailed Setup Guide](./CLAUDE_INTEGRATION.md)
224
+ - [Development Guide](./DEVELOPMENT.md)
225
+ - [Security Notice](./SECURITY_NOTICE.md)
226
+ - [Release Notes](./RELEASE_NOTES_v1.2.4.md)
201
227
 
202
- #### AbortController Not Defined
228
+ ## 🤝 Contributing
203
229
 
204
- This typically happens on older Node.js versions. The current version includes an automatic polyfill, but you can also:
230
+ Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
205
231
 
206
- 1. **Update Node.js**: Install Node.js v15+ for native AbortController support
207
- 2. **Update This Package**: Make sure you're using version 1.2.0 or higher
232
+ ## 📄 License
208
233
 
209
- See [CLAUDE_INTEGRATION.md](./CLAUDE_INTEGRATION.md) for detailed setup instructions.
234
+ MIT License - see [LICENSE](./LICENSE) file for details
210
235
 
211
- ## Claude Integration Improvements
236
+ ## 🙏 Acknowledgments
212
237
 
213
- ### Version 1.2.1 Update: Claude-specific Methods
238
+ - Built for the [Model Context Protocol](https://modelcontextprotocol.io/)
239
+ - Powered by [Airtable API](https://airtable.com/developers/web/api/introduction)
240
+ - Compatible with [Claude Desktop](https://claude.ai/) and other MCP clients
214
241
 
215
- We've added enhanced support for Claude's interface by implementing these additional methods:
242
+ ## 📮 Support
216
243
 
217
- 1. **resources/list**: Lists available Airtable resources (bases, tables, records)
218
- 2. **prompts/list**: Provides suggested prompts for common Airtable operations
244
+ - **Issues**: [GitHub Issues](https://github.com/rashidazarang/airtable-mcp/issues)
245
+ - **Discussions**: [GitHub Discussions](https://github.com/rashidazarang/airtable-mcp/discussions)
219
246
 
220
- These methods improve Claude's user experience by:
221
- - Eliminating "Method not found" errors in logs
222
- - Supporting Claude's native UI components
223
- - Enabling better integration with Claude's interface
247
+ ---
224
248
 
225
- If you're using Claude Desktop or other Claude integrations, this update should provide a more seamless experience with fewer error messages.
249
+ **Version**: 1.2.4 | **Status**: Production Ready | **Last Updated**: August 14, 2025
@@ -0,0 +1,40 @@
1
+ # Release v1.2.1: Enhanced Claude Integration
2
+
3
+ This release adds specific improvements for Claude users, focusing on eliminating error messages and providing a smoother experience when using the MCP with Claude Desktop and other Claude integrations.
4
+
5
+ ## Key Improvements
6
+
7
+ ### 🚀 Claude-specific Methods
8
+
9
+ 1. **Added support for Claude-specific RPC methods**:
10
+ - Implemented `resources/list` method
11
+ - Implemented `prompts/list` method
12
+
13
+ 2. **User Experience Enhancements**:
14
+ - Eliminated "Method not found" errors in logs
15
+ - Improved compatibility with Claude's native UI components
16
+ - Added suggested prompts for common Airtable operations
17
+
18
+ ## Installation
19
+
20
+ ### NPM
21
+ ```
22
+ npm install -g @rashidazarang/airtable-mcp@1.2.1
23
+ ```
24
+
25
+ ### Direct Download
26
+ Download the tarball package: `rashidazarang-airtable-mcp-1.2.1.tgz`
27
+
28
+ ## Upgrading from Previous Versions
29
+
30
+ If you're upgrading from v1.2.0 or earlier, you can simply install the new version:
31
+
32
+ ```
33
+ npm update -g @rashidazarang/airtable-mcp
34
+ ```
35
+
36
+ For Claude users, this update is especially recommended as it will eliminate error messages and provide a more seamless integration experience.
37
+
38
+ ## Configuration
39
+
40
+ No configuration changes are needed to benefit from these improvements. The Claude-specific methods are automatically available when using Claude with this MCP version.
@@ -0,0 +1,48 @@
1
+ # Release Notes - v1.2.2
2
+
3
+ ## Major Improvements
4
+
5
+ ### Documentation & Setup
6
+ - Completely revamped documentation with focus on Claude Desktop integration
7
+ - Added clear step-by-step installation guide
8
+ - Simplified configuration process with working JSON examples
9
+ - Added detailed troubleshooting section
10
+
11
+ ### Configuration
12
+ - Removed complex JSON configuration in favor of simpler format
13
+ - Fixed JSON parsing issues with Claude Desktop
14
+ - Updated configuration file path for Claude Desktop
15
+ - Removed unnecessary escape characters in configuration
16
+
17
+ ### Integration
18
+ - Improved Claude Desktop compatibility
19
+ - Added 30-second connection establishment guidance
20
+ - Added verification steps with example commands
21
+ - Enhanced error handling and logging guidance
22
+
23
+ ## Technical Updates
24
+ - Updated dependencies to latest versions
25
+ - Added @smithery/cli as direct dependency
26
+ - Updated Airtable SDK to v0.12.2
27
+ - Improved Node.js version compatibility
28
+
29
+ ## Bug Fixes
30
+ - Fixed JSON parsing errors in Claude Desktop
31
+ - Resolved connection timeout issues
32
+ - Fixed configuration file path issues
33
+ - Improved error messaging
34
+
35
+ ## Breaking Changes
36
+ - Configuration format has changed to use direct parameters instead of JSON config string
37
+ - Removed support for complex JSON configurations
38
+ - Changed default configuration file location for Claude Desktop
39
+
40
+ ## Migration Guide
41
+ If upgrading from v1.2.1 or earlier:
42
+ 1. Update your configuration file to use the new format
43
+ 2. Remove any escape characters from your token
44
+ 3. Restart Claude Desktop after changes
45
+ 4. Wait 30 seconds for connection to establish
46
+
47
+ ## Contributors
48
+ - @rashidazarang
@@ -0,0 +1,104 @@
1
+ # Release Notes v1.2.3
2
+
3
+ ## 🎉 **Major Improvements**
4
+
5
+ ### ✅ **Fixed Critical Issues**
6
+ - **Fixed main entry point**: Updated `package.json` to use `airtable_simple.js` as the main entry point
7
+ - **Added proper npm scripts**: Added `test`, `test:quick`, `start:python`, and `dev` scripts
8
+ - **Fixed Python compatibility**: Removed incompatible `app.rpc_method` calls from `inspector_server.py`
9
+ - **Updated documentation**: Completely rewrote README with working configuration examples
10
+
11
+ ### 🚀 **New Features**
12
+ - **Comprehensive testing suite**: Added `test_mcp_comprehensive.js` for full MCP testing
13
+ - **Quick testing script**: Added `quick_test.sh` for rapid verification
14
+ - **Cleanup utilities**: Added `cleanup.sh` for easy server management
15
+ - **Development guide**: Added `DEVELOPMENT.md` for contributors
16
+
17
+ ### 📚 **Documentation Improvements**
18
+ - **Clear architecture overview**: Documented working vs legacy components
19
+ - **Multiple setup options**: Direct usage and Smithery cloud options
20
+ - **Troubleshooting guide**: Common issues and solutions
21
+ - **Testing instructions**: Step-by-step testing procedures
22
+
23
+ ### 🛠️ **Developer Experience**
24
+ - **Better npm scripts**: `npm run test`, `npm run test:quick`, `npm start`
25
+ - **Port management**: Easy port clearing with `lsof -ti:8010 | xargs kill -9`
26
+ - **Error handling**: Improved error messages and debugging
27
+ - **Code organization**: Clear separation of working and legacy code
28
+
29
+ ## 🔧 **Technical Changes**
30
+
31
+ ### **Package.json Updates**
32
+ ```json
33
+ {
34
+ "main": "airtable_simple.js",
35
+ "bin": {
36
+ "airtable-mcp": "./airtable_simple.js"
37
+ },
38
+ "scripts": {
39
+ "start": "node airtable_simple.js",
40
+ "test": "node test_mcp_comprehensive.js",
41
+ "test:quick": "./quick_test.sh"
42
+ }
43
+ }
44
+ ```
45
+
46
+ ### **Recommended Configuration**
47
+ ```json
48
+ {
49
+ "mcpServers": {
50
+ "airtable-mcp": {
51
+ "command": "node",
52
+ "args": [
53
+ "/path/to/airtable-mcp-main/airtable_simple.js",
54
+ "--token",
55
+ "YOUR_AIRTABLE_TOKEN",
56
+ "--base",
57
+ "YOUR_BASE_ID"
58
+ ]
59
+ }
60
+ }
61
+ }
62
+ ```
63
+
64
+ ## 🧪 **Testing Results**
65
+ - ✅ **100% test success rate** on all MCP operations
66
+ - ✅ **Airtable API integration** working perfectly
67
+ - ✅ **JSON-RPC 2.0 protocol** fully compliant
68
+ - ✅ **Error handling** robust and informative
69
+ - ✅ **CORS support** for web clients
70
+
71
+ ## 📊 **Performance**
72
+ - **Response time**: < 500ms for most operations
73
+ - **Reliability**: 100% success rate in testing
74
+ - **Memory usage**: Minimal footprint
75
+ - **Scalability**: Handles multiple concurrent requests
76
+
77
+ ## 🎯 **Migration Guide**
78
+
79
+ ### **From Previous Versions**
80
+ 1. **Update configuration**: Use the new direct Node.js configuration
81
+ 2. **Test your setup**: Run `npm run test:quick` to verify
82
+ 3. **Update documentation**: Follow the new README instructions
83
+
84
+ ### **Breaking Changes**
85
+ - **Main entry point**: Now uses `airtable_simple.js` instead of `index.js`
86
+ - **Python server**: Deprecated due to compatibility issues
87
+ - **Configuration format**: Simplified JSON structure
88
+
89
+ ## 🚀 **What's Next**
90
+ - Enhanced error reporting
91
+ - Additional Airtable operations (create, update, delete)
92
+ - Better field type handling
93
+ - Performance optimizations
94
+
95
+ ## 📝 **Contributors**
96
+ - Rashid Azarang (maintainer)
97
+ - Community testing and feedback
98
+
99
+ ---
100
+
101
+ **Release Date**: January 15, 2025
102
+ **Compatibility**: Node.js >= 14.0.0, MCP 1.4.1+
103
+ **Status**: Production Ready ✅
104
+