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 🙏

© 2026 – Pkg Stats / Ryan Hefner

feishu-mcp-server-plus

v0.1.0

Published

飞书MCP服务器 - 让Claude能操作飞书(消息/审批/通讯录)- 增强版

Readme

feishu-mcp-server

飞书 MCP 服务器 - 让 Claude 能操作飞书(消息/审批/通讯录)

功能特性

  • 📧 消息发送 - 发送文本消息、富文本消息
  • 审批管理 - 创建审批实例、查询审批状态
  • 👥 通讯录 - 获取用户信息、部门用户列表

前期准备

  1. 飞书开放平台创建应用
  2. 获取应用的 App IDApp Secret
  3. 根据需要开启对应权限:
    • 消息相关:im:message:send_as_botim:message:send_to_bot
    • 审批相关:approval:instance:createapproval:instance:read
    • 通讯录:contact:user.baseinfocontact:user.id

快速开始

安装

npm install -g feishu-mcp-server

配置环境变量

# 方式1: 环境变量
export FEISHU_APP_ID=your_app_id
export FEISHU_APP_SECRET=your_app_secret

# 方式2: 创建 .env 文件
cp .env.example .env
# 编辑 .env 文件填入配置

启动服务

# 标准模式
feishu-mcp-server

在 Claude/Cline 中使用

Cline 配置

~/.cline/mcp_settings.json 中添加:

{
  "mcpServers": {
    "feishu": {
      "command": "feishu-mcp-server",
      "env": {
        "FEISHU_APP_ID": "your_app_id",
        "FEISHU_APP_SECRET": "your_app_secret"
      }
    }
  }
}

Claude Code 配置

claude.code.mcp.json 中添加:

{
  "mcpServers": {
    "feishu": {
      "command": "feishu-mcp-server",
      "args": [],
      "env": {
        "FEISHU_APP_ID": "your_app_id",
        "FEISHU_APP_SECRET": "your_app_secret"
      }
    }
  }
}

可用工具

消息

| 工具名 | 描述 | |--------|------| | feishu_message_send_text | 发送文本消息 | | feishu_message_send_rich_text | 发送富文本消息 | | feishu_message_get_user_info | 获取用户信息 | | feishu_message_get_department_users | 获取部门用户列表 |

审批

| 工具名 | 描述 | |--------|------| | feishu_approval_create_instance | 创建审批实例 | | feishu_approval_get_instance | 获取审批实例状态 |

开发

# 安装依赖
npm install

# 构建
npm run build

# 开发模式(监听文件变化自动构建)
npm run dev

# 测试
npm test

License

MIT