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

feedmob-meeting-mcp

v1.0.1

Published

MCP server to extract requirements from meeting notes and sync to Google Sheets

Readme

feedmob-meeting-mcp

从会议纪要中提取需求/待办事项,并自动同步到 Google Sheets 的 MCP Server。

快速开始

配置 Claude Desktop

在 Claude Desktop 配置文件中添加以下内容,并替换为你自己的 Google Service Account 私钥:

{
  "mcpServers": {
    "meeting-notes": {
      "command": "npx",
      "args": ["-y", "feedmob-meeting-mcp"],
      "env": {
        "GOOGLE_PRIVATE_KEY": "-----BEGIN PRIVATE KEY-----\nYour private key here\n-----END PRIVATE KEY-----"
      }
    }
  }
}

配置完成后重启 Claude Desktop 即可使用。

MCP 工具

add_requirements

从会议纪要中提取需求,写入 Google Sheets。

输入参数:

{
  requirements: Array<{
    requirement: string;  // 需求描述(必填)
    assignees?: string;   // 负责人(可选)
    notes?: string;       // 备注(可选)
  }>
}

自动填充字段:

  • 状态:默认"待分配"
  • 提出日期:调用当天
  • 提出人:默认"Ken"

test_connection

测试与 Google Sheets 的连接是否正常。

使用示例

发送会议纪要给 AI:

2026-01-27 周会纪要

讨论事项:
1. Tony 负责调研 Cursor 插件
2. zijie 继续推进 MongoDB MCP 开发
3. Lunar 整理上周的文档

AI 会自动:

  1. 解析会议纪要内容
  2. 识别出需求和负责人
  3. 调用 add_requirements 写入 Google Sheets

字段映射

| Google Sheets 列 | 说明 | 默认值 | |-----------------|------|--------| | A - 需求 | 从文本提取 | - | | B - 状态 | 任务状态 | 待分配 | | C - 提出日期 | 调用日期 | 当天 | | D - 提出人 | 需求提出者 | Ken | | E - assignees | 负责人 | 从文本提取 | | F - PA | 项目助理 | 空 | | G - ticket/链接 | 相关链接 | 空 | | H - 持续时长 | 天数 | 空 | | I - 完成日期 | 完成时间 | 空 | | J - 备注 | 备注信息 | 从文本提取 |

License

MIT