Lark MCP Custom
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Lark MCP CustomSend a message to the project group saying meeting at 3pm"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
自定义飞书 MCP Server
项目结构
lark-mcp-custom/
├── src/
│ ├── index.ts # 入口:初始化 MCP Server + 注册工具
│ ├── lark-client.ts # 飞书 SDK 客户端封装
│ └── tools/
│ ├── im-tools.ts # 消息工具(发消息、群列表、消息历史)
│ ├── calendar-tools.ts # 日历工具(查询事件、创建事件)
│ └── docs-tools.ts # 文档工具(搜索文档、多维表格读写)
├── .env.example
├── package.json
├── tsconfig.json
└── claude_desktop_config.example.jsonRelated MCP server: Feishu MCP Server
已实现工具
工具名 | 功能 |
| 发送文本消息到群或用户 |
| 获取机器人所在群列表 |
| 获取群内最近消息 |
| 查询日历事件 |
| 创建日历事件 |
| 搜索云空间文档 |
| 读取多维表格记录 |
| 向多维表格写入记录 |
安装和运行
前置条件
Node.js >= 20
飞书企业自建应用(App ID + App Secret)
步骤
安装依赖
npm install配置环境变量
cp .env.example .env
# 编辑 .env,填入 FEISHU_APP_ID 和 FEISHU_APP_SECRET构建
npm run build测试运行
FEISHU_APP_ID=cli_xxx FEISHU_APP_SECRET=xxx node dist/index.js配置 Claude 桌面版(见下方)
配置 Claude 桌面版
编辑 Claude 配置文件:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"lark-mcp-custom": {
"command": "node",
"args": ["/你的绝对路径/lark-mcp-custom/dist/index.js"],
"env": {
"FEISHU_APP_ID": "cli_你的AppID",
"FEISHU_APP_SECRET": "你的AppSecret"
}
}
}
}重启 Claude 桌面版后即可使用。
飞书应用权限配置
在飞书开放平台(https://open.feishu.cn/app)为应用开启以下权限:
IM(消息)
im:message读写消息im:chat:readonly查看群信息
日历
calendar:calendar读写日历
云文档 & 多维表格
drive:drive:readonly搜索文档bitable:app多维表格读写
扩展开发
新增工具只需两步:
在
src/tools/下创建新文件,导出registerXxxTools(server, client)函数在
src/index.ts中 import 并调用
工具定义格式:
server.tool(
"工具唯一名称",
"工具功能描述(Claude 会看这个来决定何时调用)",
{ 参数: z.string().describe("参数说明") },
async (params) => {
// 调用飞书 API
return { content: [{ type: "text", text: "返回结果" }] };
}
);Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/venchuian/lark-custom-mcp-ts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server