Influencers Club MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OUTPUT_DIR | No | Custom directory for exported files (alternative to EXPORT_HOST_DIR) | |
| IMPORTS_DIR | No | Custom directory for imported files (alternative to IMPORT_HOST_DIR) | |
| UPLOAD_BIND | No | Bind address. Set to 0.0.0.0 inside Docker. | 127.0.0.1 |
| UPLOAD_HOST | No | Hostname for the upload URL | localhost |
| UPLOAD_PORT | No | Port for the browser upload page | 8090 |
| EXPORT_HOST_DIR | No | Host path for exported files | |
| IMPORT_HOST_DIR | No | Host path for imported files | |
| MAX_CALLS_PER_MINUTE | No | Client-side rate limit | 300 |
| INFLUENCERS_CLUB_API_KEY | Yes | Your Influencers Club API key |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| discover_creatorsA | Search the Influencers.club database to discover creators/influencers. Returns profiles with basic stats. Costs 0.01 credits per creator returned. Results are returned in the API's ranking order, which is meaningful (relevance/sort position). |
| discover_creators_to_fileA | Search creators and save results directly to a CSV file on disk. Fetches multiple pages automatically (up to 10 pages / 500 creators). Returns the file path and summary stats instead of raw data. Costs 0.01 credits per creator returned. Use this when the user wants to save, export, or download a list of creators. |
| find_similar_creatorsA | Find creators similar to a specified creator. Always sorted by relevancy (no custom sort). Costs 0.01 credits per creator returned. Results are returned in relevance order, which is meaningful. No CSV export exists for similar creators. |
| audience_overlapA | Analyze audience overlap between 2-10 creators on the same platform. Shows total followers, unique followers, and overlap percentages. Costs 1 credit per request. The result suits a visual summary: a Venn diagram for 2-3 creators (one circle per creator's audience, with overlap counts in the intersections), or a heatmap or bar chart for 4-10 (pairwise overlap percentages, or shared-vs-unique segments per creator). |
| get_languagesA | Get the list of supported language codes for discovery filters. Free (0 credits). |
| get_locationsA | Get available location codes for a specific platform's discovery filters. Free (0 credits). |
| get_brandsA | Get available brand names for discovery filters (Instagram brand deal detection). Supports search and pagination. Free (0 credits). |
| get_youtube_topicsA | Get available YouTube topic categories for discovery filters. Free (0 credits). |
| get_gamesA | Get available game names for Twitch discovery filters. Free (0 credits). |
| get_audience_brand_categoriesA | Search audience brand categories for Instagram audience filters. Supports pagination. Free (0 credits). |
| get_audience_brand_namesA | Search audience brand names for Instagram audience filters. Supports pagination. Free (0 credits). |
| get_audience_interestsA | Search audience interest categories for Instagram audience filters. Supports pagination. Free (0 credits). |
| get_audience_locationsA | Search audience locations for Instagram audience filters. Supports pagination. Free (0 credits). |
| connected_socialsB | Find all social media profiles connected to a creator. Returns linked accounts across platforms. Costs 0.5 credits per successful request. |
| enrich_by_handleA | Enrich ONE creator by handle (full data: email, demographics, audience, income, brand deals). Costs 1 credit. For bulk (more than ~10 handles), use create_batch_enrichment. For basic profile data only, enrich_by_handle_raw returns a smaller result at 0.03 credits. |
| enrich_by_handle_rawA | Enrich ONE creator by handle (basic). Costs 0.03 credits. Supports linkedin. For bulk (more than ~10 handles), use create_batch_enrichment. |
| enrich_by_emailA | Enrich ONE email. Costs 0.05 credits. For bulk (more than ~10 emails), use create_batch_enrichment. |
| get_creator_postsA | Get recent posts/content from a creator. Supports Instagram (12/page), TikTok (max 35), YouTube (max 50). Uses cursor-based pagination. Costs 0.15 credits per request. |
| get_post_detailsA | Get detailed information about a specific post. Can retrieve post data, comments, transcript, or audio. Costs 0.03 credits per request. |
| check_creditsA | Check your Influencers.club account credit balance and usage. Free (0 credits). Use this to verify you have enough credits before expensive operations. |
| list_export_filesA | List result/output CSV files (batch results, discovery exports). Shows 10 most recent. Free (0 credits). |
| setup_export_pathA | Set the folder path where exported CSV files will be saved on the user's machine. Ask the user where they want exports saved, then call this tool with their answer. This only needs to be done once — the setting persists across sessions. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 22 tools
Most tools target distinct resources (locations, languages, brands, etc.). The only potential confusion is between discover_creators and discover_creators_to_file, and between enrich_by_handle and enrich_by_handle_raw, but descriptions explicitly clarify the difference with cost and output format.
The set mixes get_*, discover_*, enrich_*, audience_*, and standalone nouns like connected_socials and check_credits. While each subgroup is internally consistent, the overall pattern is inconsistent, making it harder to predict tool names.
22 tools is on the heavy side for the domain, though many are simple filter getters (9 of them) that could be consolidated. The breadth of discovery, enrichment, and export operations justifies the count, but it feels somewhat bloated.
Core workflows (discover, enrich, posts, overlap, exports) are covered. However, the descriptions reference create_batch_enrichment for bulk enrichment, which is not included in the toolset, creating a clear gap that could cause agent failures.