PluginBench
Skill
Review
Audit score 70

lark-mcp

whatevertogo/feishuskill

Official Lark/Feishu MCP integration for messaging, groups, multidimensional tables, documents, and knowledge base queries.

What is lark-mcp?

Official MCP integration for Lark (Feishu) that enables agents to send messages, create groups, manage Bitable records, search documents, and query knowledge bases. Use this when you need to interact with Lark workspace data and collaborate within Feishu.

  • Send and list messages in Lark chats
  • Create and manage group chats with specified owners and members
  • Create, search, and update records in Bitable (multidimensional tables)
  • Search and retrieve document content from Lark Docs
  • Search and access knowledge base nodes

How to install lark-mcp

npx skills add https://github.com/whatevertogo/feishuskill --skill lark-mcp
Prerequisites
  • Lark/Feishu workspace account with API access
  • OAuth configuration required for document search and knowledge base queries (use --oauth flag)
  • App token and table IDs for Bitable operations
Claude Code
Cursor
Windsurf
Cline

How to use lark-mcp

  1. 1.Install the skill using: npx skills add https://github.com/whatevertogo/feishuskill --skill lark-mcp
  2. 2.Configure OAuth if you need to search documents or knowledge bases (see installation.md)
  3. 3.Use tool names with mcp__lark-mcp__ prefix (e.g., mcp__lark-mcp__im_v1_message_create)
  4. 4.Provide required parameters: path (app_token, table_id), params (query parameters), data (request body)
  5. 5.Set useUAT: true when creating resources or accessing user data; useUAT: false for public data queries
  6. 6.Ensure content fields are JSON strings (wrapped in single quotes) and filter values are arrays

Use cases

Good for
  • Automate notifications and alerts by sending messages to Lark groups
  • Create structured data records in Bitable tables from agent workflows
  • Search Lark documents and knowledge bases to retrieve information for decision-making
  • Set up group chats programmatically for team collaboration
  • Retrieve document content to augment agent context with workspace knowledge
Who it's for
  • Lark/Feishu workspace administrators
  • Teams using Lark for collaboration and documentation
  • Developers building automation workflows within Feishu
  • Knowledge workers needing to query workspace documents and tables

lark-mcp FAQ

What does the 99991663 error mean?

This error indicates insufficient permissions. Enable OAuth configuration (use --oauth flag) for document search and knowledge base queries, or set useUAT: true for user-identity operations.

When should I use useUAT: true vs false?

Use useUAT: true when creating resources (so users can access them), searching documents/knowledge bases, or accessing user private data. Use useUAT: false for querying public data.

What's the difference between doxcn and wikcn tokens?

doxcn tokens are for Lark Documents (docx_v1_document_rawContent), while wikcn tokens are for knowledge base nodes (wiki_v2_space_getNode). Using the wrong type causes 131005 errors.

How do I format the content parameter for messages?

The content must be a JSON string wrapped in single quotes, not a JSON object. For example: content: '{"text": "hello"}' (not content: {"text": "hello"}).

Why can't users access resources I created?

Resources created with useUAT: false (tenant identity) are only accessible to the bot. Use useUAT: true and specify owner_id to make resources accessible to users.

Full instructions (SKILL.md)

Source of truth, from whatevertogo/feishuskill.


name: lark-mcp description: 飞书/Lark 官方 MCP 集成。支持发送消息、创建群组、操作多维表格(Bitable)、导入/搜索文档、知识库查询。触发词:飞书、Feishu、Lark、多维表格、bitable、飞书文档、飞书群。

Lark MCP

⚠️ 重要提醒

搜索文档/知识库必须配置 OAuth

  • docx_builtin_search → 需要 --oauth
  • wiki_v1_node_search → 需要 --oauth

否则返回 99991663 错误。配置方法见 installation.md


核心规则

# 工具命名(连字符,非下划线)
✅ mcp__lark-mcp__tool_name
❌ mcp__lark_mcp__tool_name

# 参数结构
path: {app_token, table_id}   # URL路径参数
params: {page_size, ...}      # 查询参数
data: {fields, ...}           # 请求体
useUAT: false                 # true=用户身份, false=租户身份

常见陷阱

# content 必须是 JSON 字符串
❌ content: {"text": "hello"}
✅ content: '{"text": "hello"}'

# 过滤条件 value 必须是数组
❌ value: "已完成"
✅ value: ["已完成"]

# 创建群组必须指定 owner_id,否则群主为机器人
owner_id: "ou_xxxxx"

# 参数名差异
docx_builtin_search: search_key  # 不是 query
wiki_v1_node_search: query       # 不是 search_key

# token 类型
wiki_v2_space_getNode: 用 wikcn...  # 不能用 doxcn...
docx_v1_document_rawContent: 用 doxcn...

useUAT 选择

场景useUAT
创建资源(想让用户可访问)true
搜索文档/知识库true
访问用户私有数据true
查询公共数据false

工具速查

类别工具文档
消息im_v1_message_create, im_v1_message_listim.md
群组im_v1_chat_create, im_v1_chat_list, im_v1_chatMembers_getchat.md
多维表格bitable_v1_app_create, bitable_v1_appTableRecord_search/create/updatebitable.md
文档docx_builtin_search, docx_v1_document_rawContent, docx_builtin_importdocuments.md
知识库wiki_v1_node_search, wiki_v2_space_getNodewiki.md

ID 类型

前缀类型来源
ou_用户IDAPI返回
oc_群聊IDim_v1_chat_list
bascn多维表格URL中 base/
tbl数据表URL参数 table=
doxcn文档搜索结果或URL
wikcn知识库节点知识库URL

快速示例

# 发送消息
工具: mcp__lark-mcp__im_v1_message_create
data:
  receive_id: "oc_xxxxx"
  msg_type: "text"
  content: '{"text": "消息内容"}'
params:
  receive_id_type: "chat_id"

# 创建群组
工具: mcp__lark-mcp__im_v1_chat_create
data:
  name: "群名"
  chat_mode: "group"
  owner_id: "ou_xxxxx"
  user_id_list: ["ou_xxxxx"]
params:
  user_id_type: "open_id"

# 创建多维表格记录
工具: mcp__lark-mcp__bitable_v1_appTableRecord_create
path:
  app_token: "bascnxxxxxx"
  table_id: "tblxxxxxx"
data:
  fields:
    文本字段: "值"
    单选字段: "选项名"
useUAT: true

# 搜索文档
工具: mcp__lark-mcp__docx_builtin_search
data:
  search_key: "关键词"
  count: 10
useUAT: true

错误速查

错误原因解决
tool not found服务器名错误使用 mcp__lark-mcp__ 前缀
99991663权限不足useUAT: true 或配置 OAuth
131005 not foundtoken 类型错误检查用 wikcn 还是 doxcn
创建资源无法访问租户身份创建使用 useUAT: true
field not found字段名错误appTableField_list 确认
invalid content格式错误content 用单引号包裹 JSON

详细文档: troubleshooting.md | installation.md

Related skills

More from whatevertogo/feishuskill and the wider catalog.

accounting logo

accounting

whawkinsiv/claude-code-skills

Use this skill when the user needs to set up bookkeeping, track revenue and expenses, prepare for taxes, choose accounting software, understand SaaS revenue recognition, or manage the financial operations of their bootstrapped business. Covers bookkeeping setup, tax preparation, accounting tools, and financial hygiene for solo founders.

680 installs
elite-powerpoint-designer logo

elite-powerpoint-designer

willem4130/claude-code-skills

Create world-class PowerPoint presentations with professional design, consistent branding, and sophisticated animations.

4.0k installs
memory-lancedb-pro logo

memory-lancedb-pro

win4r/memory-lancedb-pro-skill

Comprehensive guide for maintaining, debugging, and upgrading the memory-lancedb-pro OpenClaw plugin — an enhanced LanceDB-backed long-term memory system with hybrid retrieval (Vector + BM25), cross-encoder reranking, multi-scope isolation, noise filtering, adaptive retrieval, and a management CLI. Use this skill when: (1) developing new features or fixing bugs in memory-lancedb-pro, (2) modifying the retrieval pipeline (vector search, BM25, RRF fusion, reranking, scoring stages), (3) adding or changing embedding providers, (4) updating scope/access control logic, (5) modifying agent tools or CLI commands, (6) troubleshooting memory quality issues (noise, duplicates, low recall), (7) working on the JSONL session distillation pipeline, (8) migrating data between memory backends, or (9) understanding the plugin's architecture to plan enhancements.

632 installs
wind-alice logo

wind-alice

wind-information-co-ltd/wind-skills

调用万得 Alice Agent(A2A 协议,SSE 流式)执行指定 Skill 并获取分析结果的 CLI 工具。当用户要求"用 Alice 跑某个 Skill"、"出一份某公司的调研问题清单"、"做一页纸投资备忘"、"核验一段金融信息"等需要点名 Alice 子 Skill 的场景使用。

777 installsAudited
wind-find-finance-skill logo

wind-find-finance-skill

wind-information-co-ltd/wind-skills

Router for discovering and installing Wind Finance skills; routes financial data queries and analysis tasks to appropriate specialized skills.

9.4k installs
wind-mcp-skill logo

wind-mcp-skill

wind-information-co-ltd/wind-skills

Access Wind financial data for A-shares, Hong Kong/US stocks, funds, indices, bonds, and macroeconomic indicators.

24k installs