# MCP Server

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

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

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:


```json
{
  "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:


```json
{
  "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`


```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:


```bash
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](https://modelcontextprotocol.io) 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):


```json
{
  "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

div
div
strong
Discovery
span
Search and filter creators across Instagram, TikTok, YouTube, Twitter, and Twitch.
div
strong
Enrichment
span
Pull detailed profiles — engagement rates, growth trends, content performance, connected socials.
div
strong
Audience Analytics
span
Demographics, geography, interests, brand affinities, credibility, and reachability.
div
strong
Lookalikes
span
Find similar creators based on audience overlap and content similarity.
div
strong
Batch Operations
span
Enrich creator lists in bulk with CSV or JSON export.
div
strong
Post Analytics
span
Individual post data, comments, transcripts, and audio analysis.
div
a
GitHub
span
·
a
PyPI
span
·
a
Get API Key