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

ad-intelligence-mcp

v1.0.3

Published

MCP server for searching and analyzing ads from Meta, Google, and LinkedIn.

Readme

ad-intelligence-mcp

MCP server for searching and analyzing ads from Meta Ad Library, Google Ads Transparency Center, and LinkedIn Ads Library.

Installation

  • NPX (recommended):
npx -y ad-intelligence-mcp
  • Global install:
npm i -g ad-intelligence-mcp
ad-intelligence-mcp

Configuration

Set environment variables (see .env.example). At minimum provide META_ACCESS_TOKEN for Meta Ad Library queries.

  • Load via shell or MCP client config.
  • The server logs to stderr and communicates MCP over stdio.

Environment variables

  • META_ACCESS_TOKEN (required for Meta)
  • GOOGLE_ADS_CREDENTIALS (optional)
  • LINKEDIN_CREDENTIALS (optional)
  • CACHE_TTL (default: 3600 seconds)
  • MAX_CONCURRENT_REQUESTS (default: 5)
  • DEBUG (set to 1 to enable)

Usage with Claude Desktop

Add to your config:

{
  "mcpServers": {
    "ad-intelligence": {
      "command": "npx",
      "args": ["-y", "ad-intelligence-mcp"],
      "env": {
        "META_ACCESS_TOKEN": "your_token_here"
      }
    }
  }
}

Tools

  • search_company_ads:
    • params: company_name (string, required), platforms (array), country (string), limit (number)
  • search_industry_ads:
    • params: industry_type (string, required), platforms, country, limit
  • get_ad_insights:
    • params: query (string, required), analysis_depth ("basic"|"detailed")

Rate limits and behavior

  • Meta API uses pagination with automatic retries and backoff. Rate limit target: ~200 calls/hour.
  • Google/LinkedIn scraping is best-effort and disabled unless puppeteer is installed (optional dependency). Respect robots.txt and delays.
  • Caching: in-memory default TTL 1 hour.
  • Timeout: 30 seconds per request.
  • Graceful degradation: failures on one platform do not block others.

Development

npm i
npm run build
npm start
  • Shebang and bin mapping allow npx ad-intelligence-mcp to run.
  • TypeScript strict mode is enabled.
  • Logging can be enabled with DEBUG=1.

Troubleshooting

  • Missing Meta token: responses include an error for meta platform.
  • Google/LinkedIn returning empty: install puppeteer or provide credentials if available.
  • MCP client cannot connect: ensure stdio is not being intercepted; check stderr logs.

Security

  • Tokens are never logged.
  • All HTTP requests use HTTPS and timeouts.
  • Input parameters are validated.

Contributing

PRs welcome. Please run npm run build and include tests for utilities where applicable.