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

sqb-ads-mcp

v1.0.0

Published

收钱吧广告服务 MCP (Model Context Protocol) 服务 - 为 Claude 提供广告指标查询和图片分析工具

Readme

sqb-ads-mcp

收钱吧广告服务 MCP (Model Context Protocol) 服务,为 Claude 提供广告指标查询和图片分析工具。

功能

广告指标工具

  • get_slice_metrics - 获取 Slice 当日广告指标
  • get_position_metrics - 获取 Position 当日广告指标
  • get_coze_metrics - 获取 Coze 当日广告指标
  • get_top_slices_by_cost - 获取费用排名前 N 的 Slice

图片分析工具

  • analyze_image_from_url - 通过 URL 分析图片内容
  • generate_image - 根据文本生成图片(通义万相)
  • get_image_generation_status - 查询图片生成状态

系统工具

  • get_server_logs - 获取系统日志
  • get_service_status - 获取服务健康状态

安装

npm install sqb-ads-mcp

配置

环境变量

创建 .env 文件:

ADS_API_BASE=http://localhost:8888

Claude Desktop 配置

~/Library/Application Support/Claude/claude_desktop_config.json 中添加:

{
  "mcpServers": {
    "ads-service": {
      "command": "npx",
      "args": ["sqb-ads-mcp"],
      "env": {
        "ADS_API_BASE": "http://localhost:8888"
      }
    }
  }
}

或使用本地安装:

{
  "mcpServers": {
    "ads-service": {
      "command": "node",
      "args": ["path/to/ads-mcp/src/index.js"],
      "env": {
        "ADS_API_BASE": "http://localhost:8888"
      }
    }
  }
}

使用

启动 MCP 服务

npm start

使用 MCP Inspector 测试

npm run inspect

依赖

本 MCP 服务需要配合 ai-adsservice-mcp 后端服务使用。

启动顺序:

  1. 先启动后端服务:cd ../ai-adsservice-mcp && npm start
  2. 再配置 Claude Desktop 使用本 MCP 服务

发布

npm login
npm publish --access public

许可证

MIT