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

tavily-mcp-multikey

v1.1.0

Published

MCP server for Tavily API with multi-key load balancing, usage tracking, and multi-channel notifications (Slack, Discord, Telegram, WeChat, DingTalk, Feishu)

Downloads

270

Readme

Tavily MCP MultiKey(中文说明)

English | 中文

本项目是 tavily-mcp 的一个增强版本(npm 包名:tavily-mcp-multikey),主要增加:

  • 多 API Key 负载均衡与自动故障切换
  • 使用统计(本地 JSON 持久化)与配额检查
  • 可选的 webhook 回调(用于告警/定期报告等)

快速启动(推荐:NPX)

npx -y tavily-mcp-multikey@latest

启动前必须设置环境变量(二选一):

  • TAVILY_API_KEYS=key1,key2,key3(多 key,推荐)
  • TAVILY_API_KEY=key1(单 key)

MCP 客户端配置示例(Claude/Cline/VS Code 等)

{
  "mcpServers": {
    "tavily-mcp": {
      "command": "npx",
      "args": ["-y", "tavily-mcp-multikey@latest"],
      "env": {
        "TAVILY_API_KEYS": "tvly-abc123,tvly-def456",
        "USAGE_TRACKING_ENABLED": "true"
      }
    }
  }
}

使用统计(可选)

启用(最小配置):

  • USAGE_TRACKING_ENABLED=true

可选配置:

  • USAGE_STATS_FILE=./usage-stats.json
  • USAGE_CALLBACK_URL=<你的 webhook 地址>
  • USAGE_REPORT_INTERVAL=3600
  • USAGE_ALERT_THRESHOLD=80

说明

  • README 的英文版包含更完整的配置/示例与细节说明:见 README.md
  • 本仓库内还有更详细的指南(如果存在):如 USAGE_TRACKING_GUIDE.mdWEBHOOK_GUIDE.mdMULTI_CHANNEL_NOTIFICATIONS.md