drio
Open app

Bitable MCP Server

Source

This MCP server provides access to Lark Bitable through the Model Context Protocol. It allows users to interact with Bitable tables using predefined tools.

Catalog onlyCatalog onlySTDIO

Overview

Bitable MCP Server provides access to Lark Bitable through the Model Context Protocol, enabling users to interact with Bitable tables using predefined tools.

To use the Bitable MCP Server, install it using the provided commands and configure it with your personal base token and app token. You can then utilize various tools to interact with Bitable tables.

  • One-click installation and configuration options. - Tools for listing tables, describing tables, and executing SQL queries. - Support for both uvx and pip installation methods.
  1. Automating data retrieval from Bitable tables.
  2. Integrating Bitable with other applications using SQL queries.
  3. Managing and describing table structures programmatically.

Add to your AI client

Use these steps to connect Bitable MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "bitable-mcp-lloydzhou": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitable-mcp-lloydzhou"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "bitable-mcp-lloydzhou": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitable-mcp-lloydzhou"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "bitable-mcp-lloydzhou": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitable-mcp-lloydzhou"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "bitable-mcp-lloydzhou": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitable-mcp-lloydzhou"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "bitable-mcp-lloydzhou": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitable-mcp-lloydzhou"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "bitable-mcp-lloydzhou": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitable-mcp-lloydzhou"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol?

The Model Context Protocol is a framework that allows applications to interact with data models in a standardized way.

Is Bitable MCP Server free to use?

Yes! Bitable MCP Server is open-source and free to use.

What programming language is Bitable MCP Server written in?

Bitable MCP Server is written in Python.