npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

feishu-bitable-mcp

v0.1.0

Published

MCP Server for Feishu/Lark Bitable (multi-dimensional table), focused on task board integration.

Readme

Feishu Bitable MCP

用于连接飞书多维表格(Bitable)任务板的 Model Context Protocol Server。

支持任何 MCP 兼容客户端(Kimi Code、Claude Code、Cursor、Windsurf 等)通过 stdio 传输读取、创建、更新、删除任务记录。

前置条件

  • Node.js >= 18
  • 飞书企业自建应用(已开通 Bitable 相关权限)
  • 多维表格的 App TokenTable ID

安装

npm install -g feishu-bitable-mcp

或直接用 npx:

npx -y feishu-bitable-mcp

配置

在运行目录创建 .env

FEISHU_APP_ID=cli_xxxxxxxxxxxx
FEISHU_APP_SECRET=xxxxxxxxxxxx
FEISHU_BITABLE_APP_TOKEN=xxxxxxxxxxxx
FEISHU_BITABLE_TABLE_ID=tblxxxxxxxxxx
FEISHU_DOMAIN=https://open.feishu.cn

在各客户端中的配置

Kimi Code

项目根目录 .kimi-code/mcp.json

{
  "mcpServers": {
    "feishu-bitable": {
      "command": "npx",
      "args": ["-y", "feishu-bitable-mcp"]
    }
  }
}

Claude Code

claude mcp add feishu-bitable npx -y feishu-bitable-mcp

Cursor

~/.cursor/mcp.json

{
  "mcpServers": {
    "feishu-bitable": {
      "command": "npx",
      "args": ["-y", "feishu-bitable-mcp"]
    }
  }
}

提供的工具

  • list_tasks — 列出全部任务
  • get_task — 获取单条任务详情
  • create_task — 创建任务
  • update_task — 更新任务字段
  • delete_task — 删除任务

命令行模式(可选)

除了作为 MCP Server,也保留了独立 CLI:

feishu-bitable list
feishu-bitable get <record_id>
feishu-bitable create '<json_fields>'
feishu-bitable update <record_id> '<json_fields>'
feishu-bitable delete <record_id>

本地开发

cd packages/feishu-bitable-mcp
npm install
node src/cli.js list
npx @modelcontextprotocol/inspector node src/index.js

发布

npm publish --access public

许可

MIT