by lloydzhou
Provides access to Lark Bitable tables via the Model Context Protocol, enabling users to list, describe, and query tables with predefined tools.
Bitable MCP enables interaction with Lark Bitable spreadsheets through a set of predefined tools. Users can list available tables, retrieve column definitions, and execute SQL‑like read queries, all returned as JSON.
npx -y @smithery/cli install @lloydzhou/bitable-mcp --client claude
# Using uvx (recommended)
uv run --with uv --with bitable-mcp bitable-mcp-install
# Or via pip
pip install bitable-mcp
{
"PERSONAL_BASE_TOKEN": "your-personal-base-token",
"APP_TOKEN": "your-app-token"
}
list_table
, describe_table
, and read_query
.Q: Which tokens are required?
A: PERSONAL_BASE_TOKEN
(your Lark personal base token) and APP_TOKEN
(the Bitable app token).
Q: Can I run the server locally?
A: Yes. After installation, start the server via the provided CLI command (bitable-mcp
or python -m bitable_mcp
).
Q: Is there support for other clients like Cursor or Windsurf? A: The README notes “Coming soon” for those clients.
Q: How do I debug the server?
A: Use the MCP inspector, e.g., npx @modelcontextprotocol/inspector uvx bitable-mcp
.
Q: Do I need Node.js? A: No. The core package is Python‑based; Node.js is only required for the optional Smithery installer.
This MCP server provides access to Lark Bitable through the Model Context Protocol. It allows users to interact with Bitable tables using predefined tools.
To install Bitable Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @lloydzhou/bitable-mcp --client claude
To install and configure the server, use the following command:
PERSONAL_BASE_TOKEN=your_personal_base_token APP_TOKEN=your_app_token uv run --with uv --with bitable-mcp bitable-mcp-install
Replace your_personal_base_token
and your_app_token
with your actual tokens.
Coming soon
Coming soon
list_table
- List tables for the current Bitable.
describe_table
- Describe a table by its name.
name
(str): The name of the table to describe.read_query
- Execute a SQL query to read data from the tables.
sql
(str): The SQL query to execute.Please make sure uvx
is installed before installation.
Add to your Claude settings:
"mcpServers": {
"bitable-mcp": {
"command": "uvx",
"args": ["bitable-mcp"],
"env": {
"PERSONAL_BASE_TOKEN": "your-personal-base-token",
"APP_TOKEN": "your-app-token"
}
}
}
bitable-mcp
via pip:pip install bitable-mcp
"mcpServers": {
"bitable-mcp": {
"command": "python",
"args": ["-m", "bitable_mcp"],
"env": {
"PERSONAL_BASE_TOKEN": "your-personal-base-token",
"APP_TOKEN": "your-app-token"
}
}
}
Add to your Zed settings.json:
Using uvx
"context_servers": [
"bitable-mcp": {
"command": "uvx",
"args": ["bitable-mcp"],
"env": {
"PERSONAL_BASE_TOKEN": "your-personal-base-token",
"APP_TOKEN": "your-app-token"
}
}
],
Using pip installation
"context_servers": {
"bitable-mcp": {
"command": "python",
"args": ["-m", "bitable_mcp"],
"env": {
"PERSONAL_BASE_TOKEN": "your-personal-base-token",
"APP_TOKEN": "your-app-token"
}
}
},
You can use the MCP inspector to debug the server. For uvx installations:
npx @modelcontextprotocol/inspector uvx bitable-mcp
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by googleapis
An MCP server that streamlines database tool development by handling connection pooling, authentication, observability, and secure access, allowing agents to interact with databases via natural language.
by bytebase
Provides a universal gateway that lets MCP‑compatible clients explore and query MySQL, PostgreSQL, SQL Server, MariaDB, and SQLite databases through a single standardized interface.
by designcomputer
Enables secure interaction with MySQL databases via the Model Context Protocol, allowing AI applications to list tables, read contents, and execute queries safely.
by benborla
Provides read‑only access to MySQL databases for large language models, allowing schema inspection and safe execution of SQL queries.
by ClickHouse
Enables AI assistants to run read‑only ClickHouse queries, list databases and tables, and execute embedded chDB queries through an MCP interface.
by chroma-core
Offers an MCP server exposing Chroma's vector database capabilities for LLM applications, supporting collection and document management, multiple embedding functions, and flexible client types such as in‑memory, persistent, HTTP, and cloud.
by kiliczsh
Enables LLMs to interact with MongoDB databases via a standardized interface, offering schema inspection, query execution, aggregation, and write capabilities, with optional read‑only mode and smart ObjectId handling.
by domdomegg
Provides read and write access to Airtable bases for AI systems, enabling inspection of schemas and manipulation of records.
by XGenerationLab
A Model Context Protocol (MCP) server that enables natural language queries to databases