/SKILL.md
飞书全能 MCP - 创建/编辑文档、插入图表、管理表格、搜索知识库。整合社区版+官方 MCP,适配 Moltbot/Clawdbot。
npx skillsauth add alexanys/feishu-mcp feishu-mcpInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
整合社区版 feishu-mcp(文档编辑)+ 官方 lark-mcp(多维表格/搜索),让 Clawdbot 完整操作飞书。
curl -fsSL https://raw.githubusercontent.com/AlexAnys/feishu-mcp/main/setup.sh | bash
| 服务 | 来源 | 能力 |
|------|------|------|
| feishu | 社区版 | 创建/编辑文档、图表、图片 |
| lark | 官方 | 多维表格、发消息 |
| lark-user | 官方 | 搜索文档、读取知识库 |
# 创建文档
mcporter call feishu.create_feishu_document --args '{"title":"新文档"}'
# 添加内容
mcporter call feishu.batch_create_feishu_blocks --args '{"document_id":"xxx","blocks":[...]}'
# 插入表格
mcporter call feishu.create_feishu_table --args '{"document_id":"xxx","rows":3,"cols":3}'
# 创建表格
mcporter call lark.bitable_v1_app_create --args '{"data":{"name":"项目表"}}'
# 写入记录
mcporter call lark.bitable_v1_appTableRecord_create --args '{"path":{"app_token":"xxx","table_id":"xxx"},"data":{"fields":{"标题":"任务1"}}}'
# 搜索文档
mcporter call lark-user.docx_builtin_search --args '{"data":{"search_key":"会议","count":5}}'
# 读取内容
mcporter call lark-user.docx_v1_document_rawContent --args '{"path":{"document_id":"xxx"}}'
# 搜索知识库
mcporter call lark-user.wiki_v1_node_search --args '{"data":{"query":"入职"}}'
飞书开放平台开通:
docx:document - 读写文档drive:drive - 云空间wiki:wiki - 知识库bitable:app - 多维表格search:docs:read - 搜索重定向 URL:
http://localhost:3000/callbackhttp://localhost:3333/callbackhttps://github.com/AlexAnys/feishu-mcp
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.