@meetsponsors/mcp-server
v1.0.0
Published
MCP server for Meet Sponsors - Access YouTube sponsorship data directly in Claude Desktop and other LLM tools
Maintainers
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-serverThen configure:
{
"mcpServers": {
"meet-sponsors": {
"command": "meetsponsors-mcp",
"env": {
"MCP_API_KEY": "your_api_key_here"
}
}
}
}Getting an API Key
- Go to meetsponsors.com
- Sign up or log in
- Navigate to Settings → API Access
- Create a new API key with the desired permissions
- 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
Open your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
Add the Meet Sponsors server:
{
"mcpServers": {
"meet-sponsors": {
"command": "npx",
"args": ["-y", "@meetsponsors/mcp-server"],
"env": {
"MCP_API_KEY": "mcp_your_key_here"
}
}
}
}- 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 filterssponsor.get- Get detailed sponsor informationsponsor.stats- Get sponsor statisticssponsor.similar- Find similar sponsorssponsor.youtubers- List YouTubers who worked with a sponsorsponsor.mostActive- Get most active sponsors in a period
YouTubers
youtuber.search- Search YouTubers with advanced filtersyoutuber.get- Get detailed YouTuber informationyoutuber.sponsors- List sponsors a YouTuber has worked withyoutuber.recentSponsored- Get recent sponsored videosyoutuber.similar- Find similar YouTubersyoutuber.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
