npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@ringozhang/skilled-feishu-mcp

v1.0.4

Published

A Model Context Protocol (MCP) server that integrates with Feishu's Open Platform APIs

Readme

Skilled Feishu MCP

一个用于与飞书文档系统集成的 Model Context Protocol (MCP) 服务器。它允许 AI 代理(如 Cherry Studio、Cursor 等)通过 MCP 接口与飞书文档交互。

功能

  • 创建飞书文档
  • 获取文档信息和内容
  • 管理文档区块(文本、代码、标题、列表等)
  • 在开发模式下使用模拟数据进行测试

快速开始

使用 npx 运行

无需安装,直接使用 npx 运行:

npx -y @ringozhang/skilled-feishu-mcp --stdio --feishu-app-id=<你的飞书应用ID> --feishu-app-secret=<你的飞书应用密钥>

在 Cherry Studio 中配置

在 Cherry Studio 的 MCP 服务器配置中添加以下内容:

"skilled-feishu-mcp": {
  "isActive": true,
  "command": "npx",
  "args": [
    "-y",
    "@ringozhang/skilled-feishu-mcp",
    "--stdio"
  ],
  "env": {
    "FEISHU_APP_ID": "<你的飞书应用ID>",
    "FEISHU_APP_SECRET": "<你的飞书应用密钥>"
  },
  "name": "skilled-feishu-mcp"
}

开发模式

通过设置 NODE_ENV=development 或使用测试凭据(以 cli_test_ 开头的 App ID),服务器将运行在开发模式。在开发模式下:

  • 不会实际调用飞书 API
  • 使用模拟数据进行响应
  • 提供详细的日志输出

示例:

NODE_ENV=development npx -y @ringozhang/skilled-feishu-mcp --stdio --feishu-app-id=cli_test_9e11c52b0e1c500e --feishu-app-secret=test_app_secret_for_development

可用工具

| 工具名 | 描述 | |--------|------| | mcp__get_feishu_doc_info | 获取飞书文档的基本信息 | | mcp__get_feishu_doc_content | 获取飞书文档的纯文本内容 | | mcp__get_feishu_doc_blocks | 获取飞书文档的区块结构 | | mcp__get_feishu_block_content | 获取特定区块的详细内容 | | mcp__update_feishu_block_text | 更新文本区块的内容和样式 | | mcp__create_feishu_document | 创建新的飞书文档 | | mcp__create_feishu_multiple_blocks | 一次创建多个不同类型的区块 | | mcp__create_feishu_single_text_block | 创建文本区块 | | mcp__create_feishu_single_code_block | 创建代码区块 | | mcp__create_feishu_single_heading_block | 创建标题区块 | | mcp__create_feishu_single_list_block | 创建列表项区块 | | mcp__get_feishu_wiki_document_id | 将 Wiki 链接转换为文档 ID |

命令行参数

  • --feishu-app-id: 飞书应用 ID
  • --feishu-app-secret: 飞书应用密钥
  • --stdio: 使用标准输入/输出进行通信(用于 Cherry Studio 等 MCP 客户端)
  • --verbose: 启用详细日志记录
  • --help: 显示帮助信息

飞书应用设置

  1. 飞书开放平台创建一个应用
  2. 开启以下权限:
    • docx:doc:read - 读取文档
    • docx:doc:write - 创建和更新文档
  3. 获取应用的 App ID 和 App Secret

许可证

MIT