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

@supermoon/lark-project-mcp

v1.0.0

Published

MCP Server for Lark Project (飞书项目) - Read work items, search issues, and more

Readme

lark-project-mcp

English | 中文


English

MCP Server for Lark Project (飞书项目) - Read work items, search issues, and more in AI assistants.

Features

| Tool | Description | |------|-------------| | get_work_item_by_url | Get work item details by URL | | get_work_item | Get work item by project/type/ID | | search_work_items | Search work items | | get_projects | List accessible projects | | get_work_item_types | List work item types in a project | | get_workflow | Get workflow status of a work item | | get_comments | Get comments of a work item |

Installation

npm install -g @supermoon/lark-project-mcp

Configuration

1. Get Credentials

  1. Visit Lark Project Open Platform
  2. Click avatar (bottom-left) → Open PlatformCreate Plugin
  3. Get Plugin ID and Plugin Secret
  4. In Permission Management, select data scope and required permissions
  5. Double-click your avatar to get User Key

Documentation: https://project.feishu.cn/b/helpcenter/1p8d7djs/4id4bvnf

2. Configure MCP

Claude Code (~/.claude/mcp-servers.json)

{
  "mcpServers": {
    "lark-project": {
      "command": "npx",
      "args": ["-y", "@supermoon/lark-project-mcp"],
      "env": {
        "LARK_PROJECT_PLUGIN_ID": "your_plugin_id",
        "LARK_PROJECT_PLUGIN_SECRET": "your_plugin_secret",
        "LARK_PROJECT_USER_KEY": "your_user_key"
      }
    }
  }
}

Codex CLI (~/.codex/config.toml)

[mcp_servers."lark-project"]
command = "npx"
args = ["-y", "@supermoon/lark-project-mcp"]
env = { "LARK_PROJECT_PLUGIN_ID" = "your_plugin_id", "LARK_PROJECT_PLUGIN_SECRET" = "your_plugin_secret", "LARK_PROJECT_USER_KEY" = "your_user_key" }
startup_timeout_sec = 60

Generic MCP JSON (for other MCP-compatible clients)

{
  "lark-project": {
    "command": "npx",
    "args": ["-y", "@supermoon/lark-project-mcp"],
    "env": {
      "LARK_PROJECT_PLUGIN_ID": "your_plugin_id",
      "LARK_PROJECT_PLUGIN_SECRET": "your_plugin_secret",
      "LARK_PROJECT_USER_KEY": "your_user_key"
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | LARK_PROJECT_PLUGIN_ID | Yes | Plugin ID | | LARK_PROJECT_PLUGIN_SECRET | Yes | Plugin Secret | | LARK_PROJECT_USER_KEY | Yes | User Key | | LARK_PROJECT_BASE_URL | No | API URL, default https://project.feishu.cn |

Usage Example

After configuration, use in AI assistant:

Read this issue https://project.feishu.cn/myproject/issue/detail/123456789

中文

飞书项目 MCP Server - 在 AI 助手中读取飞书项目工单内容。

功能

| 工具 | 说明 | |------|------| | get_work_item_by_url | 根据 URL 获取工作项详情 | | get_work_item | 根据空间/类型/ID 获取工作项 | | search_work_items | 搜索工作项列表 | | get_projects | 获取有权限的空间列表 | | get_work_item_types | 获取空间下的工作项类型 | | get_workflow | 获取工作项的工作流状态 | | get_comments | 获取工作项的评论 |

安装

npm install -g @supermoon/lark-project-mcp

配置

1. 获取凭证

  1. 访问 飞书项目开放平台
  2. 左下角头像 → 开放平台新建插件
  3. 获取 Plugin IDPlugin Secret
  4. 权限管理 中选择数据范围并勾选所需权限
  5. 双击用户头像获取 User Key

详细文档: https://project.feishu.cn/b/helpcenter/1p8d7djs/4id4bvnf

2. 配置 MCP

Claude Code (~/.claude/mcp-servers.json)

{
  "mcpServers": {
    "lark-project": {
      "command": "npx",
      "args": ["-y", "@supermoon/lark-project-mcp"],
      "env": {
        "LARK_PROJECT_PLUGIN_ID": "你的插件ID",
        "LARK_PROJECT_PLUGIN_SECRET": "你的插件密钥",
        "LARK_PROJECT_USER_KEY": "你的用户标识"
      }
    }
  }
}

Codex CLI (~/.codex/config.toml)

[mcp_servers."lark-project"]
command = "npx"
args = ["-y", "@supermoon/lark-project-mcp"]
env = { "LARK_PROJECT_PLUGIN_ID" = "你的插件ID", "LARK_PROJECT_PLUGIN_SECRET" = "你的插件密钥", "LARK_PROJECT_USER_KEY" = "你的用户标识" }
startup_timeout_sec = 60

通用 MCP JSON 配置 (适用于其他 MCP 兼容客户端)

{
  "lark-project": {
    "command": "npx",
    "args": ["-y", "@supermoon/lark-project-mcp"],
    "env": {
      "LARK_PROJECT_PLUGIN_ID": "你的插件ID",
      "LARK_PROJECT_PLUGIN_SECRET": "你的插件密钥",
      "LARK_PROJECT_USER_KEY": "你的用户标识"
    }
  }
}

环境变量

| 变量名 | 必需 | 说明 | |--------|------|------| | LARK_PROJECT_PLUGIN_ID | 是 | 插件 ID | | LARK_PROJECT_PLUGIN_SECRET | 是 | 插件密钥 | | LARK_PROJECT_USER_KEY | 是 | 用户标识 | | LARK_PROJECT_BASE_URL | 否 | API 地址,默认 https://project.feishu.cn |

使用示例

配置完成后,在 AI 助手中直接使用:

读取这个工单 https://project.feishu.cn/myproject/issue/detail/123456789

License

MIT