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

@iflow-mcp/eldment-meting-agent

v1.6.5

Published

Meting Agent server for multi-platform music lookup.

Readme

Meting-Agent

Meting-Agent 是基於 metowolf/Meting 建構的 MCP 服務,支援 網易雲音樂netease)、騰訊音樂tencent)、酷狗音樂kugou)、千千音樂baidu)、酷我音樂kuwo) 等音樂平台,提供搜尋、歌曲、專輯、歌手、歌單、播放連結、歌詞、封面等能力

Meting-Agent Showcase

取得

透過 npm 發布,專案詳情: @eldment/meting-agent

MCP 工具

  • platforms:列出支援的平台與平台代號
  • search:依關鍵字搜尋歌曲、專輯、歌手或平台特定資源
  • song:依歌曲 ID 取得詳情
  • album:依專輯 ID 取得詳情
  • artist:依歌手 ID 取得作品
  • playlist:依歌單 ID 取得詳情
  • url:依歌曲 ID 取得播放位址
  • lyric:依歌曲 ID 取得歌詞
  • pic:依資源 ID 取得封面位址

MCP 接入

Claude 設定範例:

{
  "mcpServers": {
    "meting": {
      "command": "npx",
      "args": [
        "-y",
        "@eldment/meting-agent@latest"
      ],
      "env": {
        "METING_NETEASE_COOKIE": "__csrf=...; MUSIC_U=...; NMTID=...; __remember_me=true;",
        "METING_TENCENT_COOKIE": "uin=...; qm_keyst=...; qqmusic_key=...;",
        "METING_KUGOU_COOKIE": "KugooID=...; t=...; dfid=...; mid=...;",
        "METING_BAIDU_COOKIE": "...",
        "METING_KUWO_COOKIE": "..."
      },
      "timeout": 60000
    }
  }
}

Codex 設定範例:

[mcp_servers.meting]
type = "stdio"
command = "npx"
args = [
    "-y",
    "@eldment/meting-agent@latest",
]
env = {
    METING_NETEASE_COOKIE = "__csrf=...; MUSIC_U=...; NMTID=...; __remember_me=true;",
    METING_TENCENT_COOKIE = "uin=...; qm_keyst=...; qqmusic_key=...;",
    METING_KUGOU_COOKIE = "KugooID=...; t=...; dfid=...; mid=...;",
    METING_BAIDU_COOKIE = "...",
    METING_KUWO_COOKIE = "...",
}
tool_timeout_sec = 60

Cookie 規則

執行時依以下優先級取得 Cookie:

  1. METING_<PLATFORM>_COOKIE
  2. METING_COOKIE
  3. MCP 工具參數中的 cookie

支援的環境變數:

  • METING_NETEASE_COOKIE
  • METING_TENCENT_COOKIE
  • METING_KUGOU_COOKIE
  • METING_BAIDU_COOKIE
  • METING_KUWO_COOKIE
  • METING_COOKIE(通用)

如果只需要替某一個平台帶 cookie,優先使用對應的平台變數;如果想統一兜底,可以只設定 METING_COOKIE