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

ani-rss-mcp

v1.0.0

Published

MCP server for ani-rss - 番剧订阅管理工具

Readme

ani-rss MCP Server

MCP server for ani-rss - 番剧自动订阅下载工具。

安装

npm 全局安装

npm install -g ani-rss-mcp

npx 使用(无需安装)

npx ani-rss-mcp

配置

环境变量

ANI_RSS_URL=http://localhost:7789          # ani-rss 服务地址
ANI_RSS_AUTH_TYPE=none|bearer|apiKey       # 认证方式
ANI_RSS_TOKEN=<token>                      # Bearer token (bearer 认证时)
ANI_RSS_API_KEY=<api-key>                  # API Key (apiKey 认证时)

Claude Desktop 配置

添加到 Claude Desktop 配置文件:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "ani-rss": {
      "command": "ani-rss-mcp",
      "env": {
        "ANI_RSS_URL": "http://localhost:7789",
        "ANI_RSS_API_KEY": "your-api-key"
      }
    }
  }
}

或使用 npx:

{
  "mcpServers": {
    "ani-rss": {
      "command": "npx",
      "args": ["ani-rss-mcp"],
      "env": {
        "ANI_RSS_URL": "http://localhost:7789",
        "ANI_RSS_API_KEY": "your-api-key"
      }
    }
  }
}

可用工具

订阅管理

| 工具 | 说明 | |------|------| | ani-rss_list-subscriptions | 获取订阅列表 | | ani-rss_add-subscription | 添加订阅(支持匹配/排除规则、自定义路径等) | | ani-rss_update-subscription | 更新订阅 | | ani-rss_delete-subscriptions | 删除订阅(可选删除本地文件) | | ani-rss_refresh-subscription | 刷新订阅(检查新资源) | | ani-rss_batch-enable | 批量启用/禁用订阅 | | ani-rss_update-episode-count | 更新总集数 | | ani-rss_import-subscriptions | 导入订阅 | | ani-rss_scrape-media-info | 刮削媒体信息 |

Mikan 搜索

| 工具 | 说明 | |------|------| | ani-rss_search-mikan | 搜索 Mikan 番剧 | | ani-rss_get-mikan-groups | 获取字幕组列表 | | ani-rss_get-mikan-bangumi | 获取番剧详情(含 RSS 地址) |

开发

# 安装依赖
npm install

# 构建
npm run build

# 监听模式
npm run dev

发布

# 登录 npm
npm login

# 发布
npm publish

License

MIT