Skip to main content
Glama

Bitable MCP Server

by lloydzhou

Bitable MCP 服务器

该 MCP 服务器通过模型上下文协议 (MCP) 提供对 Lark Bitable 的访问。它允许用户使用预定义的工具与 Bitable 表进行交互。

一键安装和配置

克劳德

要安装和配置服务器,请使用以下命令:

PERSONAL_BASE_TOKEN=your_personal_base_token APP_TOKEN=your_app_token uv run --with uv --with bitable-mcp bitable-mcp-install

your_personal_base_tokenyour_app_token替换为您的实际令牌。

光标

即将推出

风帆冲浪

即将推出

可用工具

  • list_table - 列出当前 Bitable 的表。
    • 返回:JSON 编码的表名列表。
  • describe_table - 通过表名描述表。
    • 参数
      • name (str): 要描述的表的名称。
    • 返回:表中列的 JSON 编码列表。
  • read_query - 执行 SQL 查询以从表中读取数据。
    • 参数
      • sql (str):要执行的 SQL 查询。
    • 返回:查询结果的 JSON 编码列表。

手动安装和配置

安装前请确保已安装uvx

添加到您的 Claude 设置:

  1. 使用 uvx
"mcpServers": { "bitable-mcp": { "command": "uvx", "args": ["bitable-mcp"], "env": { "PERSONAL_BASE_TOKEN": "your-personal-base-token", "APP_TOKEN": "your-app-token" } } }
  1. 使用 pip 安装
  2. 通过 pip 安装bitable-mcp
pip install bitable-mcp
  1. 修改您的 Claude 设置
"mcpServers": { "bitable-mcp": { "command": "python", "args": ["-m", "bitable_mcp"], "env": { "PERSONAL_BASE_TOKEN": "your-personal-base-token", "APP_TOKEN": "your-app-token" } } }

为 Zed 配置

添加到您的 Zed settings.json:

使用 uvx

"context_servers": [ "bitable-mcp": { "command": "uvx", "args": ["bitable-mcp"], "env": { "PERSONAL_BASE_TOKEN": "your-personal-base-token", "APP_TOKEN": "your-app-token" } } ],

使用 pip 安装

"context_servers": { "bitable-mcp": { "command": "python", "args": ["-m", "bitable_mcp"], "env": { "PERSONAL_BASE_TOKEN": "your-personal-base-token", "APP_TOKEN": "your-app-token" } } },

调试

您可以使用 MCP 检查器来调试服务器。对于 uvx 安装:

npx @modelcontextprotocol/inspector uvx bitable-mcp
-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

通过模型上下文协议提供对 Lark Bitable 的访问,允许用户使用预定义的工具与 Bitable 表进行交互。

  1. 一键安装和配置
    1. 克劳德
    2. 光标
    3. 风帆冲浪
  2. 可用工具
    1. 手动安装和配置
      1. 为 Zed 配置
    2. 调试

      Related MCP Servers

      • -
        security
        A
        license
        -
        quality
        A Model Context Protocol server that provides read and write access to Airtable databases. This server enables LLMs to inspect database schemas, then read and write records.
        Last updated -
        11
        1,423
        233
        TypeScript
        MIT License
      • A
        security
        F
        license
        A
        quality
        Provides access to Intercom conversations and chats through the Model Context Protocol, allowing LLMs to query and analyze Intercom conversations with various filtering options.
        Last updated -
        2
        6
        TypeScript
        • Apple
      • -
        security
        F
        license
        -
        quality
        A Model Context Protocol server that enables LLMs to interact with Databricks workspaces through natural language, allowing SQL query execution and job management operations.
        Last updated -
        38
        Python
        • Linux
        • Apple
      • -
        security
        F
        license
        -
        quality
        A Model Context Protocol server that integrates with Slack API, allowing users to send messages, view channel history, manage channels, send direct messages, and retrieve user lists from Slack workspaces.
        Last updated -
        Python
        • Apple
        • Linux

      View all related MCP servers

      MCP directory API

      We provide all the information about MCP servers via our MCP API.

      curl -X GET 'https://glama.ai/api/mcp/v1/servers/lloydzhou/bitable-mcp'

      If you have feedback or need assistance with the MCP directory API, please join our Discord server