Connect your AI tools directly to the Influencers Club API — search creators, pull profiles, and analyze audiences from your editor or assistant.
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).