运行时依赖
安装命令
点击复制技能文档
Feishu MCP Integration
This 技能 integrates OpenClaw with Feishu's MCP (模型 上下文 Protocol) 服务.
Configuration
添加 to ~/.OpenClaw/OpenClaw.json:
{ "插件s": { "entries": { "feishu-mcp": { "enabled": true, "config": { "mcpUrl": "https://feishu-openAI-mcp-proxy.bytedance.net/mcp", "应用ID": "命令行工具_a926728f3e38dcba", "应用Secret": "BiL8CymBwxiA998MXxvUKbN23RhPsxAg" } } } } }
Supported 工具s
- Read Document
Read a Feishu cloud document by 令牌.
{ "action": "read", "doc令牌": "docx_xxx" }
Returns: title, text content, block types.
- Write Document
Replace document content.
{ "action": "write", "doc令牌": "docx_xxx", "content": "# Title\n\nMarkdown content..." }
- 创建 Document
创建 a new document.
{ "action": "创建", "title": "New Document", "folder令牌": "fldcn_xxx" }
- Read Table
Read a table from a document.
{ "action": "readTable", "doc令牌": "docx_xxx", "tableBlockId": "doxcn_xxx" }
Returns: 2D array of cell values.
- Write Table
Write values to a table.
{ "action": "writeTable", "doc令牌": "docx_xxx", "tableBlockId": "doxcn_xxx", "values": [ ["A1", "B1"], ["A2", "B2"] ] }
- 应用end Content
应用end markdown to document.
{ "action": "应用end", "doc令牌": "docx_xxx", "content": "添加itional content" }
Usage in OpenClaw
Once 配置d, AI can automatically use Feishu MCP 工具s:
- Read document "XXX.docx" and 提取 tables
- 创建 a new document "Meeting Notes"
- Write data to an existing table
- 更新 specific section of document
Notes MCP 工具s use native Feishu OpenAPI Auto-authentication via 应用ID/应用Secret Document 令牌 提取ed from URL: https://xxx.feishu.cn/docx/ABC123def Dependencies Feishu OpenClaw 插件 (channel: feishu) Feishu 应用 with docx 权限s enabled