Connect Claude, Cursor & co below and get 30 free requests every month (read-only). Upgrade to Creator for 1,000 requests/month (10,000 with Agent), the channel import tools, and personal API keys for scripts & automations.
See plansModern AI clients support remote MCP servers with OAuth. No API key required — sign in once, done.
1. In your AI tool, add a custom MCP connector with this URL:
https://api.meetsponsors.com/mcp2. Sign in when prompted
Your AI tool will redirect you here to authorize access. You're already signed in, so it's one click.
3. Start asking questions
"Find me the most active VPN sponsors this month" — "Which YouTubers worked with Squarespace?"
Where to add it: Claude Desktop → Settings → Developer → Custom Connectors · Claude.ai → Settings → Connectors · Cursor → Settings → MCP · Windsurf → MCP Settings.
For scripts, N8N, Make.com, Python, or any client that doesn't support OAuth.
Make HTTP POST requests to our MCP endpoint with your API key in the Authorization header. Quotas reset automatically each month.
Endpoint
https://api.meetsponsors.com/mcpExample: List all tools
curl -X POST https://api.meetsponsors.com/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer mcp_xxxxx" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'Example: Search sponsors
curl -X POST https://api.meetsponsors.com/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer mcp_xxxxx" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "sponsor.search",
"arguments": { "search": "vpn", "limit": 10 }
}
}'Available tools: sponsor.search, sponsor.get, sponsor.stats, sponsor.recentVideos, youtuber.search, youtuber.get, youtuber.sponsors, and more.