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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@meetsponsors/mcp-server

v1.0.0

Published

MCP server for Meet Sponsors - Access YouTube sponsorship data directly in Claude Desktop and other LLM tools

Readme

Meet Sponsors MCP Server

Access YouTube sponsorship data directly in Claude Desktop, N8N, and other MCP-compatible tools.

What is this?

This is an MCP (Model Context Protocol) server that connects to the Meet Sponsors API, giving LLMs direct access to:

  • 🏢 Sponsor data (companies, brands, advertisers)
  • 🎥 YouTuber data (channels, statistics, demographics)
  • 📊 Sponsorship relationships and analytics

Installation

Option 1: Use with npx (Recommended)

No installation needed! Just configure and run:

{
  "mcpServers": {
    "meet-sponsors": {
      "command": "npx",
      "args": ["-y", "@meetsponsors/mcp-server"],
      "env": {
        "MCP_API_KEY": "your_api_key_here"
      }
    }
  }
}

Option 2: Install globally

npm install -g @meetsponsors/mcp-server

Then configure:

{
  "mcpServers": {
    "meet-sponsors": {
      "command": "meetsponsors-mcp",
      "env": {
        "MCP_API_KEY": "your_api_key_here"
      }
    }
  }
}

Getting an API Key

  1. Go to meetsponsors.com
  2. Sign up or log in
  3. Navigate to Settings → API Access
  4. Create a new API key with the desired permissions
  5. Copy the key (it will only be shown once!)

Configuration

Environment Variables

  • MCP_API_KEY (required): Your Meet Sponsors API key
  • MCP_API_URL (optional): Custom API URL (defaults to https://api.meetsponsors.com/mcp)

Claude Desktop Setup

  1. Open your Claude Desktop config file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the Meet Sponsors server:

{
  "mcpServers": {
    "meet-sponsors": {
      "command": "npx",
      "args": ["-y", "@meetsponsors/mcp-server"],
      "env": {
        "MCP_API_KEY": "mcp_your_key_here"
      }
    }
  }
}
  1. Restart Claude Desktop

Usage Examples

Once configured, you can ask Claude:

  • "Find me the most active VPN sponsors this month"
  • "Which tech YouTubers have over 500k subscribers?"
  • "How many videos has Benjamin Code made with Hostinger?"
  • "Show me sponsors similar to NordVPN"
  • "Find YouTubers who have worked with Squarespace"

Available Tools

Sponsors

  • sponsor.search - Search sponsors with advanced filters
  • sponsor.get - Get detailed sponsor information
  • sponsor.stats - Get sponsor statistics
  • sponsor.similar - Find similar sponsors
  • sponsor.youtubers - List YouTubers who worked with a sponsor
  • sponsor.mostActive - Get most active sponsors in a period

YouTubers

  • youtuber.search - Search YouTubers with advanced filters
  • youtuber.get - Get detailed YouTuber information
  • youtuber.sponsors - List sponsors a YouTuber has worked with
  • youtuber.recentSponsored - Get recent sponsored videos
  • youtuber.similar - Find similar YouTubers
  • youtuber.lastActiveBiggest - Get biggest active YouTubers

Troubleshooting

"MCP_API_KEY environment variable is required"

Make sure you've set the MCP_API_KEY in your config's env section.

"API request failed: 401"

Your API key is invalid or expired. Generate a new one from the Meet Sponsors dashboard.

"API request failed: 403"

Your API key doesn't have the required permissions (scopes) for this operation.

"API request failed: 429"

You've exceeded your monthly quota. Upgrade your plan or wait for the quota to reset.

Support

  • Documentation: https://meetsponsors.com/docs/mcp
  • Issues: https://github.com/meetsponsors/mcp-server/issues
  • Email: [email protected]

License

MIT