Connect your AI tools directly to the Influencers Club API — search creators, pull profiles, and analyze audiences from your editor or assistant.
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.
- In Claude, open Settings → Connectors → Add custom connector.
- Enter the URL:
https://mcp-dashboard.influencers.club/mcp - Click Connect — you'll be redirected to the Influencers Club dashboard to sign in and approve access.
- 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.
For local tools — Cursor, VS Code, Claude Desktop, Claude Code, and others. For the hosted no-install path, see Use with claude.ai above.
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.
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"
}
}
}
}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.
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.
Run in your terminal:
claude mcp add influencers-club -e INFLUENCERS_CLUB_API_KEY=YOUR_API_KEY -- uvx influencers-club-mcpAny tool that supports the Model Context Protocol can connect. The configuration uses the same parameters across tools:
| Parameter | Value |
|---|---|
| Command | uvx |
| Arguments | influencers-club-mcp |
| Environment | INFLUENCERS_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).
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.
"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."
- The server doesn't appear in your client (local install) — make sure
uvis installed anduvx influencers-club-mcpruns from a terminal, then validate the config JSON and restart the client. - Errors mentioning credits or limits — check your balance with the
check_creditstool 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