Developer Tools

MCP & API Access

Connect Meet Sponsors to Claude, Cursor, automation tools, and more.

You're on the free MCP tier

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 plans

Connect with Claude, Cursor, and other AI tools

Recommended

Modern 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/mcp

2. 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.

Personal API keys

For scripts, N8N, Make.com, Python, or any client that doesn't support OAuth.

Upgrade to create keys

Using API keys with N8N, Make.com, Python, etc.

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/mcp

Example: 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.

Using Claude Desktop or another AI tool? Don't create an API key — use the OAuth connection at the top of this page instead. It's simpler and more secure.