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

feedback-manage-mcp

v1.0.10

Published

MCP server for feedback management — query and manage issues / student feedback

Readme

feedback-manage-mcp

针对问题反馈管理系统的 MCP (Model Context Protocol) 服务,支持线上问题反馈和学生问题反馈的查询与流转操作。

快速开始

npx feedback-manage-mcp

环境变量

| 变量 | 说明 | 默认值 | |------|------|--------| | FEEDBACK_API_BASE_URL | 后端 API 地址 | https://feedback-api.magic-school.com | | FEEDBACK_API_TOKEN | 用户登录 Token(必填) | 无 |

在 Claude Desktop / Claude Code 中配置

{
  "mcpServers": {
    "feedback-manage": {
      "command": "npx",
      "args": ["-y", "feedback-manage-mcp"],
      "env": {
        "FEEDBACK_API_BASE_URL": "https://feedback-api.magic-school.com",
        "FEEDBACK_API_TOKEN": "你的登录 Token"
      }
    }
  }
}

可用工具

线上问题反馈

| 工具 | 说明 | |------|------| | list_my_issues | 查询指派给当前用户的线上问题列表(自动从 token 解析用户) | | list_issues | 查询问题列表(支持状态/优先级/学校/项目/指派人/关键词/日期筛选) | | get_issue | 获取问题详情 + 流转历史 | | create_issue | 创建新问题 | | update_issue_status | 指派 / 解决 / 关闭 / 重新激活 | | add_issue_comment | 添加备注 |

学生问题反馈

| 工具 | 说明 | |------|------| | list_my_student_feedback | 查询指派给当前用户的学生反馈列表(自动从 token 解析用户) | | list_student_feedback | 查询学生反馈列表(支持状态/优先级/指派人工号/关键词/日期筛选) | | get_student_feedback | 获取学生反馈详情 + 流转历史 | | update_student_feedback_status | 多人指派 / 解决 / 关闭 / 重新激活 | | add_student_feedback_comment | 添加备注 |

状态说明

  • active — 激活(待处理)
  • resolved — 已解决
  • closed — 已关闭

发布到 npm

npm login
npm publish