Install
openclaw skills install openclaw-feishu-mcpUse when user asks about Feishu MCP (Model Context Protocol) integration for AI agents. Provides cloud document operations with native MCP tool schema. Use for Feishu MCP integration.
openclaw skills install openclaw-feishu-mcpThis skill integrates OpenClaw with Feishu's MCP (Model Context Protocol) service.
Add to ~/.openclaw/openclaw.json:
{
"plugins": {
"entries": {
"feishu-mcp": {
"enabled": true,
"config": {
"mcpUrl": "https://feishu-openai-mcp-proxy.bytedance.net/mcp",
"appID": "cli_a926728f3e38dcba",
"appSecret": "BiL8CymBwxiA998MXxvUKbN23RhPsxAg"
}
}
}
}
}
Read a Feishu cloud document by token.
{
"action": "read",
"docToken": "docx_xxx"
}
Returns: title, text content, block types.
Replace document content.
{
"action": "write",
"docToken": "docx_xxx",
"content": "# Title\n\nMarkdown content..."
}
Create a new document.
{
"action": "create",
"title": "New Document",
"folderToken": "fldcn_xxx"
}
Read a table from a document.
{
"action": "readTable",
"docToken": "docx_xxx",
"tableBlockId": "doxcn_xxx"
}
Returns: 2D array of cell values.
Write values to a table.
{
"action": "writeTable",
"docToken": "docx_xxx",
"tableBlockId": "doxcn_xxx",
"values": [
["A1", "B1"],
["A2", "B2"]
]
}
Append markdown to document.
{
"action": "append",
"docToken": "docx_xxx",
"content": "Additional content"
}
Once configured, AI can automatically use Feishu MCP tools:
- Read document "XXX.docx" and extract tables
- Create a new document "Meeting Notes"
- Write data to an existing table
- Update specific section of document
https://xxx.feishu.cn/docx/ABC123def