Influencers Club Creator Marketing MCP

by influencers-club

Not rated
GitHub

About

MCP to access the world's largest influencer discovery and enrichment database

Details

Author
influencers-club
Categories
Database, Marketing, Other

Setup

Install Influencers Club Creator Marketing MCP in your MCP client (Claude Desktop, Cursor, Windsurf, and others).

Repository: https://github.com/influencers-club/influencers-club-mcp

Follow the installation instructions in the repository README, then restart your MCP client.

MCP to access the world's largest influencer discovery and enrichment database

Beta— This project is under active development. It works and can be tested, but expect changes before the stable release.

MCP server for theInfluencers Club API— creator enrichment, discovery, audience analysis, content data, batch operations, and account management.

The hosted server runs athttps://mcp-dashboard.influencers.club/mcpand signs you in with OAuth — no API key to copy around.

Requirements:anInfluencers Clubaccount with API credits. Discovery and enrichment tools consume credits (costs are listed on every tool and in the tables below); dictionary/lookup tools are free.

- The hosted connector exposes the 19 API tools. File and batch tools (CSV export, bulk CSV enrichment) need a local filesystem and are available only in thelocal install.
- Connection expired / 401 errors:disconnect and reconnect the connector to re-authenticate.
- "Insufficient credits" errors:top up in the
dashboard; calls keep failing until the balance is positive.

The same hosted server works as a ChatGPT connector:

- Python 3.10+ orDocker Desktop
- An
Influencers Club API key

git clone https://github.com/Influencers-Club/influencers-club-mcp.git cd influencers-club-mcp pip install -e .

Then add to your Claude Desktopclaude_desktop_config.json:

{ "mcpServers": { "influencers-club": { "command": "influencers-club-mcp", "env": { "INFLUENCERS_CLUB_API_KEY": "your_api_key_here" } } } }

Restart Claude Desktop — the server will appear as "influencers-club". That's it.

Where do files go?By default, exported CSVs and uploads are saved toexports/andimports/inside the cloned repo folder. No extra configuration needed.

To use a custom location, add these env vars:

"EXPORT_HOST_DIR": "/your/custom/exports", "IMPORT_HOST_DIR": "/your/custom/imports", "OUTPUT_DIR": "/your/custom/exports", "IMPORTS_DIR": "/your/custom/imports"

Add to your project's.mcp.jsonor global~/.claude/settings.json:

{ "mcpServers": { "influencers-club": { "command": "influencers-club-mcp", "env": { "INFLUENCERS_CLUB_API_KEY": "your_api_key_here" } } } }

Add to.vscode/mcp.jsonin your project:

{ "servers": { "influencers-club": { "command": "influencers-club-mcp", "env": { "INFLUENCERS_CLUB_API_KEY": "your_api_key_here" } } } }

Use Docker if you want filesystem isolation or prefer containerized deployments.

git clone https://github.com/Influencers-Club/influencers-club-mcp.git cd influencers-club-mcp docker build -t influencers-club-mcp .

Add to your Claude Desktopclaude_desktop_config.json:

{ "mcpServers": { "influencers-club": { "command": "docker", "args": [ "run", "-i", "--rm", "-p", "127.0.0.1:8090:8090", "-e", "INFLUENCERS_CLUB_API_KEY=your_api_key_here", "-e", "UPLOAD_PORT=8090", "-e", "UPLOAD_BIND=0.0.0.0", "-v", "/path/to/exports:/exports", "-v", "/path/to/imports:/imports", "-e", "EXPORT_HOST_DIR=/path/to/exports", "-e", "IMPORT_HOST_DIR=/path/to/imports", "influencers-club-mcp" ] } } }

Note:Replace/path/to/exportsand/path/to/importswith actual paths on your machine. The path appears 4 times — update all of them.

- macOS/Linux:/Users/john/influencers-club-mcp/exports
- Windows:C:\\Users\\John\\Desktop\\influencers-club-mcp\\exports(use double backslashes)

After configuring, restart your client. The server will appear as "influencers-club".

19 API tools are available everywhere (hosted connector and local). Tools markedlocal onlyneed the local filesystem, so they exist only in stdio installs.

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

Find similar creators for campaign scaling:

"I like the creator @MrBeast on YouTube. Find 10 similar creators with at least 100k followers."

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

"Show me the latest posts from @garyvee on TikTok with engagement metrics."

"What other social media accounts does @cristiano have linked to their Instagram?"

"How many credits do I have left?"

- Hosted connector shows "disconnected" or tools return 401— remove and re-add the connector (or click Reconnect) to refresh the OAuth session.
- Errors mentioning credits or limits— check your balance withcheck_creditsor in thedashboard; calls fail until the limit resets or credits are added.
- Local: server doesn't appear in Claude Desktop— verify the config JSON is valid and restart the app; check thatinfluencers-club-mcpruns from a terminal.
- Local: upload page unreachable— another process may hold port 8090; setUPLOAD_PORTto a free port.
- Anything else:
open an issueor emailgjorgji.p@influencers.club.

This MCP server is a thin client between the connected AI assistant (e.g. Claude or ChatGPT) and theInfluencers Club API. The sections below describe what the server itself does with your data; the Influencers Club platform's full data practices are governed by theInfluencers Club Privacy Policy.

Data we collect.None. The server does not collect, persist, or transmit personally identifiable information about the human using the AI assistant. The only inputs it receives are the tool arguments the assistant sends (e.g. a creator handle or a CSV path) and the bearer token used to authenticate against the Influencers Club API.

How data is used.Tool arguments are forwarded directly to the Influencers Club API to fulfill the requested operation (discovery, enrichment, batch processing, etc.). Responses are returned to the assistant. The server performs no analytics, profiling, or model training on this data.

Storage.The server keeps no database. The only data written to disk are: (a) CSV exports/imports the user explicitly creates via the file tools, written to local directories the user controls (exports/,imports/, or paths set byEXPORT_HOST_DIR/IMPORT_HOST_DIR); (b) a small.ic_config.jsonfile storing the chosen export path. No conversation content, API responses, or credentials are persisted.

Third-party sharing.The server communicates with exactly one third party: the Influencers Club API. No data is sent to any other endpoint, analytics service, or telemetry provider. The bearer token is transmitted only to the Influencers Club API over HTTPS and is redacted from any error messages returned to the assistant.

Retention.The server retains nothing in-process beyond the lifetime of a single tool call, with the exception of the user-controlled CSV files described above, which the user can delete at any time. Bearer tokens are read from environment variables (or, in hosted/HTTP mode, from the authenticated request) and are never written to disk.

Contact.Privacy questions and data-deletion requests:gjorgji.p@influencers.club. Security disclosures may also be filed viaGitHub Issues.

- Email:gjorgji.p@influencers.club
- GitHub Issues:
github.com/Influencers-Club/influencers-club-mcp/issues

Marketing insights and audience analysis from Audiense reports, covering demographic, cultural, influencer, and content engagement analysis.

Perplexity for social: ask what competitors are running across social and get answers grounded in real ad and creative data, not guesses.

AI-powered social media profile analysis, engagement scoring, trend detection, and hashtag research.

Editorial intelligence for creators and their agents — discover the stories worth writing about, rank the strongest angle, and draft grounded, platform-native posts.

Model Context Protocol (MCP) server for SociaVault — query TikTok, Instagram, YouTube, Twitter/X, LinkedIn, Facebook, Reddit, Threads, Pinterest, Twitch, TikTok Shop, and ad libraries from any AI assistant.

B2B creator intelligence MCP — search, enrich & score LinkedIn/YouTube creators for campaigns.

Tweet scoring and optimization using X's actual algorithm weights - 22 engagement signals, 18 safety filters, diversity penalty calculator, and 11 research tools.

Structured iGaming reference data — slot specs, RTP variants, providers, regulators, news and jobs.

Slingshot MCP introduces Slingshot Aerospace’s space data platform in your AI chat—explore satellites, orbits, and Portal insights through Slingshot’s hosted server.

Access and interact with Allen Institute for Neural Dynamics (AIND) metadata directly within your IDE.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.