AITable MCP Server

AITable MCP Server

hamchowderr

Connects to AITable workspaces for managing records, fields, and datasheets through comprehensive API access. Supports file uploads and workspace search across multiple tools.

Enables interaction with AITable workspaces through comprehensive API access, supporting record and field management, datasheet creation, file uploads, and workspace search across 16 tools with both local and remote deployment options.

146 views1Local (stdio)

What it does

  • Manage records and fields in AITable datasheets
  • Create and configure new datasheets
  • Upload and manage files in workspaces
  • Search across workspace content
  • Query datasheet metadata and structure
  • Handle workspace permissions and settings

Best for

Teams using AITable for project managementDevelopers building AITable integrationsData analysts working with AITable datasetsOrganizations automating AITable workflows
16 different tools availableBoth local and remote deploymentComplete workspace management

About AITable MCP Server

AITable MCP Server is a community-built MCP server published by hamchowderr that provides AI assistants with tools and capabilities via the Model Context Protocol. AITable MCP Server: full AITable API access and workspace API, datasheet API, and record management API—file uploads and It is categorized under databases, developer tools.

How to install

You can install AITable MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

License

AITable MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

AITable MCP Server

AITable

Model Context Protocol (MCP) server for integrating with AITable platform.

⚠️ Important: AITable has been discontinued. If you're looking to migrate to Bika (the successor platform), check out the Bika MCP Server.

AITable LTD Holders: Claim your free Bika account by filling out this migration form (available only for AITable LTD users).

Overview

This MCP server provides integration with AITable's API, enabling AI assistants to:

  • Query and filter datasheet records
  • Create, update, and delete records
  • Upload and manage attachments
  • Work with fields, views, and nodes
  • Create embeddable links

Features

  • Records Management: Full CRUD operations on AITable records
  • Fields Management: Create, query, and delete fields
  • Views & Nodes: Access datasheet views and workspace nodes
  • Attachments: Upload and manage files
  • Embed Links: Create and manage embeddable links
  • Formula Resources: Access AITable formula documentation

Prerequisites

  • Node.js >= 18.0.0
  • npm or pnpm
  • AITable account with API access token

Installation

Option 1: Install via npm (Recommended)

Once published, you can install directly via npx:

# No installation needed! Run directly with npx
npx aitable-mcp

Option 2: Install from Source

# Clone the repository
git clone https://github.com/hamchowderr/aitable-mcp.git
cd aitable-mcp

# Install dependencies
npm install

# Build the project
npm run build

Configuration

Environment Variables

The server requires the following environment variables:

VariableRequiredDescription
AITABLE_API_TOKENYesYour AITable API access token
SPACE_IDYesYour AITable space ID

Setting Environment Variables

Option 1: Environment variables

# Windows
set AITABLE_API_TOKEN=your-api-token-here
set SPACE_ID=your-space-id

# macOS/Linux
export AITABLE_API_TOKEN="your-api-token-here"
export SPACE_ID="your-space-id"

Option 2: Create a .env file

Create a .env file in the project root:

AITABLE_API_TOKEN=your-api-token-here
SPACE_ID=your-space-id

Usage

Option 1: Claude Desktop (Stdio Transport)

The recommended way to use this MCP server is with Claude Desktop using stdio transport.

Configuration File Locations

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Using npx (Recommended)

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "aitable": {
      "command": "npx",
      "args": ["-y", "aitable-mcp"],
      "env": {
        "AITABLE_API_TOKEN": "your-token-here",
        "SPACE_ID": "your-space-id"
      }
    }
  }
}

Using Local Installation

For development or local installations:

{
  "mcpServers": {
    "aitable": {
      "command": "node",
      "args": ["C:\\absolute\\path\\to\\aitable-mcp\\dist\\stdio-server.js"],
      "env": {
        "AITABLE_API_TOKEN": "your-token-here",
        "SPACE_ID": "your-space-id"
      }
    }
  }
}

Important: Restart Claude Desktop after updating the configuration.

Option 2: Testing with MCP Inspector

Test your server locally with the official MCP Inspector:

# Run the inspector
npm run inspector

# Or run directly
npx @modelcontextprotocol/inspector dist/stdio-server.js

This will:

  1. Start the MCP server
  2. Launch the inspector web interface at http://localhost:6274
  3. Allow you to test tools, resources, and prompts interactively

Option 3: Running Standalone (Stdio)

Run the server directly for stdio transport:

# Build and start
npm run build
npm start

# Development mode with watch
npm run dev

Option 4: Custom Connector (HTTP Transport via Vercel)

Deploy as a custom connector for HTTP-based MCP access.

Deploy to Vercel

  1. Initial Deployment:

    # Install Vercel CLI if needed
    npm install -g vercel
    
    # Deploy to Vercel
    npx vercel@latest
    
  2. Production Deployment:

    npx vercel@latest --prod
    
  3. Set Environment Variables:

    In your Vercel project settings (Settings → Environment Variables), add:

    • AITABLE_API_TOKEN - Your AITable API token (required for authenticating with AITable)
    • SPACE_ID - Your AITable space ID (required)

    Important: Ensure both variables are enabled for all environments (Production, Preview, and Development). If Preview is unchecked, preview deployment URLs will fail with "Connection refused".

  4. Disable Deployment Protection (Required for MCP):

    In your Vercel project settings (Settings → Deployment Protection):

    • Turn OFF "Vercel Authentication"
    • This is required for Claude Desktop and other MCP clients to connect
    • Your data remains secure through the API token configured in step 3
  5. Configure as Custom Connector in Claude Desktop:

    IMPORTANT: Custom connectors must be configured via the Claude Desktop UI, NOT via claude_desktop_config.json.

    To add the custom connector:

    1. Open Claude Desktop
    2. Go to Settings → Connectors
    3. Click Add Custom Connector
    4. Enter your deployment URL: https://your-project.vercel.app/mcp
    5. Save and restart Claude Desktop

    Note: Make sure to include /mcp at the end of the URL!

  6. Test the Deployment:

    # Test with the test script
    node scripts/test-streamable-http-client.mjs https://your-project.vercel.app
    

Deployment Options

Stdio vs HTTP Transport:

  • Stdio (Recommended): Lower latency, direct process communication, best for Claude Desktop
  • HTTP (Custom Connector): Centralized deployment, multiple clients, better for cloud deployments

Which to use?

  • Use stdio for local Claude Desktop integration
  • Use HTTP for centralized deployments, multiple users, or cloud-based AI clients

Security

Authentication Overview

This MCP server uses different authentication strategies depending on the transport:

Stdio Transport (Recommended for Personal Use)

  • Uses environment variables for AITable API authentication
  • No client authentication required (local process, no network exposure)
  • Most secure for personal use
  • Configure via claude_desktop_config.json

HTTP Transport (Custom Connector)

  • Deployed to Vercel as a serverless function
  • Requires disabling Vercel Deployment Protection
  • CORS-enabled for browser-based access
  • Environment variables stored securely in Vercel

Security Best Practices

IMPORTANT:

  • ⚠️ Keep your AITABLE_API_TOKEN secret - it grants full access to your AITable data
  • ⚠️ Keep your deployment URL private - share only with trusted users
  • ⚠️ Disable Vercel Deployment Protection for MCP clients to connect
  • ✅ Use environment variables in Vercel (never commit tokens to git)
  • ✅ Rotate your API token periodically
  • ✅ Monitor access logs in Vercel dashboard
  • ✅ For personal use, prefer stdio transport over HTTP

Architecture

This MCP server supports dual transport following official MCP patterns:

Stdio Transport (src/stdio-server.ts)

  • Primary entry point for Claude Desktop
  • Direct process communication via stdin/stdout
  • Low latency, perfect for local development
  • Executable via npx or node dist/stdio-server.js

HTTP Transport (api/server.ts)

  • Vercel serverless function with CORS support
  • Uses mcp-handler library for HTTP transport
  • Supports custom connector deployments
  • All requests handled at root path with catch-all routing

Both transports share the same core business logic while providing different communication mechanisms.

Project Structure

aitable-mcp/
├── src/
│   ├── stdio-server.ts    # Stdio entry point
│   ├── http-server.ts     # Local HTTP server for testing
│   ├── aitable-tools.ts   # MCP tool implementations
│   ├── formula-resource.ts # Formula documentation provider
│   ├── types.ts           # TypeScript type definitions
│   └── *.md               # Formula documentation files
├── api/
│   └── server.ts          # HTTP entry point (Vercel)
├── public/
│   └── index.html         # Landing page
├── scripts/
│   ├── test-client.mjs                    # SSE transport tester
│   └── test-streamable-http-client.mjs    # HTTP transport tester
├── dist/                  # Compiled output
├── package.json
├── tsconfig.json
├── vercel.json            # Vercel configuration
└── README.md

Available Tools (16)

The MCP server provides comprehensive AITable integration tools:

Records Management

  • get_records - Query records with filtering, sorting, and pagination
  • create_records - Create new records (max 10 per request)
  • update_records - Update existing records (max 10 per request)
  • delete_records - Delete records (max 10 per request)

Fields Management

  • get_fields - Get field metadata from datasheets
  • create_field - Create new fields in datasheets
  • delete_field - Delete fields from datasheets

Views & Datasheets

  • get_views - Get views from datasheets
  • create_datasheet - Create new datasheets with custom fields

Attachments

  • upload_attachment - Upload files to datasheets

Nodes & Workspace

  • get_node_list - Get list of files in workspace
  • search_nodes - Search nodes by type, permissions, and keywords
  • get_node_detail - Get detailed information about specific nodes

Embed Links

  • create_embed_link - Create embeddable links for nodes
  • get_embed_links - List all embed links for a node
  • delete_embed_link - Delete/disable embed links

Available Resources (8)

Formula reference documentation:

  • formula_overview - Quick reference guide to AITable formulas
  • `

README truncated. View full README on GitHub.

Alternatives

Related Skills

Browse all skills
ui-design-system

UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.

18
fullstack-developer

Modern web development expertise covering React, Node.js, databases, and full-stack architecture. Use when: building web applications, developing APIs, creating frontends, setting up databases, deploying web apps, or when user mentions React, Next.js, Express, REST API, GraphQL, MongoDB, PostgreSQL, or full-stack development.

11
smithery-ai-cli

Find, connect, and use MCP tools and skills via the Smithery CLI. Use when the user searches for new tools or skills, wants to discover integrations, connect to an MCP, install a skill, or wants to interact with an external service (email, Slack, Discord, GitHub, Jira, Notion, databases, cloud APIs, monitoring, etc.).

6
ai-sdk

Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".

6
api-documenter

Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.

4
openai-knowledge

Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.

4