Skip to content
Last updated

Connect your AI tools directly to the Influencers Club API — search creators, pull profiles, and analyze audiences from your editor or assistant.

Use with claude.ai (no install)

The Influencers Club MCP server is also available as a hosted connector for claude.ai (the web app) — no installation or API key needed. Using the Claude desktop app or Claude Code instead? See the local setup below.

  1. In Claude, open Settings → Connectors → Add custom connector.
  2. Enter the URL: https://mcp-dashboard.influencers.club/mcp
  3. Click Connect — you'll be redirected to the Influencers Club dashboard to sign in and approve access.
  4. That's it. Ask Claude something like "Find 5 Instagram creators in fitness with 50k–500k followers."

Requirements: an Influencers Club account with API credits.

Local setup

For local tools — Cursor, VS Code, Claude Desktop, Claude Code, and others. For the hosted no-install path, see Use with claude.ai above.

Before you start
An API key from the Influencers Club dashboard.
uv installed — run pip install uv if you don't have it yet.

Every tool needs your API key as an environment variable called INFLUENCERS_CLUB_API_KEY. Cursor and VS Code offer a one-click install — add the key in the server settings after. Other tools use a config file or command.

Cursor

Install in Cursor

Click to install automatically, then open Cursor Settings → MCP → influencers-club and add your API key as an environment variable.

Or paste this into your Cursor MCP config manually:

{
  "mcpServers": {
    "influencers-club": {
      "command": "uvx",
      "args": ["influencers-club-mcp"],
      "env": {
        "INFLUENCERS_CLUB_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

VS Code

Install in VS Code

Click to install automatically, then open .vscode/mcp.json and add the environment variable with your key.

Or create .vscode/mcp.json in your workspace manually:

{
  "servers": {
    "influencers-club": {
      "command": "uvx",
      "args": ["influencers-club-mcp"],
      "env": {
        "INFLUENCERS_CLUB_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Also works with GitHub Copilot Chat in VS Code.

Claude Desktop

Add to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "influencers-club": {
      "command": "uvx",
      "args": ["influencers-club-mcp"],
      "env": {
        "INFLUENCERS_CLUB_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Restart Claude Desktop after saving.

Claude Code

Run in your terminal:

claude mcp add influencers-club -e INFLUENCERS_CLUB_API_KEY=YOUR_API_KEY -- uvx influencers-club-mcp

Other MCP Clients

Any tool that supports the Model Context Protocol can connect. The configuration uses the same parameters across tools:

ParameterValue
Commanduvx
Argumentsinfluencers-club-mcp
EnvironmentINFLUENCERS_CLUB_API_KEY = your key

Example config (Windsurf, n8n, Continue, Zed, ChatGPT Desktop, and most other MCP-compatible tools accept this shape):

{
  "influencers-club": {
    "command": "uvx",
    "args": ["influencers-club-mcp"],
    "env": {
      "INFLUENCERS_CLUB_API_KEY": "YOUR_API_KEY"
    }
  }
}

Check your tool's MCP documentation for any wrapper around this (e.g., some tools nest it under mcpServers or servers).

What you can do

Discovery and enrichment tools consume account credits per result; reference-data and status tools are free. See Usage, pricing, and limits for per-endpoint costs.

DiscoverySearch and filter creators across Instagram, TikTok, YouTube, Twitter, and Twitch.
EnrichmentPull detailed profiles — engagement rates, growth trends, content performance, connected socials.
Audience AnalyticsDemographics, geography, interests, brand affinities, credibility, and reachability.
LookalikesFind similar creators based on audience overlap and content similarity.
Batch OperationsEnrich creator lists in bulk with CSV or JSON export.
Post AnalyticsIndividual post data, comments, transcripts, and audio analysis.

Example prompts

"Find 5 Instagram creators with 50k–500k followers who post about fitness and have an engagement rate above 3%."

"Get me the full profile for @cristiano on Instagram, including audience demographics."

"Compare the audience overlap between @nike, @adidas, and @puma on Instagram."

Troubleshooting

  • The server doesn't appear in your client (local install) — make sure uv is installed and uvx influencers-club-mcp runs from a terminal, then validate the config JSON and restart the client.
  • Errors mentioning credits or limits — check your balance with the check_credits tool or in the dashboard; calls keep failing until credits are added or the limit resets. See Usage, pricing, and limits.

Questions or issues: aleksandra@influencers.club · GitHub issues

Privacy: Influencers Club Privacy Policy