Influencer Finder MCP Server
Allows discovering Instagram influencers by keyword or niche, returning handles, profile URLs, and follower counts.
Allows discovering Pinterest influencers by keyword or niche, returning handles, profile URLs, and follower counts.
Allows discovering Threads influencers by keyword or niche, returning handles, profile URLs, and follower counts.
Allows discovering TikTok influencers by keyword or niche, returning handles, profile URLs, and follower counts.
Allows discovering Twitch influencers by keyword or niche, returning handles, profile URLs, and follower counts.
Allows discovering YouTube influencers by keyword or niche, returning handles, profile URLs, and follower counts.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Influencer Finder MCP Serverfind budget travel influencers on TikTok with 10k+ followers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Influencer Finder MCP Server
MCP server for the Mamba Labs Influencer Finder actor on Apify.
Keywords or a curated niche in, influencer handles out, one flat row per creator per platform.
Install
npx -y @mambalabsdev/mcp-creator-finderClaude Desktop
{
"mcpServers": {
"mamba-creator-finder": {
"command": "npx",
"args": ["-y", "@mambalabsdev/mcp-creator-finder"],
"env": { "APIFY_TOKEN": "your-apify-token" }
}
}
}Get an Apify token at console.apify.com/account/integrations.
Related MCP server: Social Intel MCP
Tool
find_influencers
Find influencers by keyword or niche across seven creator platforms, with follower counts.
Input | Type | Required | Notes |
| array | no | Search phrases, one per line, for example "budget travel" or "meal prep coach". Each keyword is searched on each platform. Use |
| string | no | Loads a curated set of search keywords for the niche (about 60 per niche, measured in the September 2026 pre-research). |
| integer | no | How many keywords from the niche set to search. 1 to 60. Default |
| array | no | Which platforms to search, and which platforms a bare @handle is looked up on. A full profile URL carries its own platform and ignores this. Supported: TikTok, Instagram, YouTube, Pinterest, Twitch, Threads, and. |
| integer | no | Cap per search. Search engines honor the site: filter for the first page or two only, so 20 to 30 per keyword with more keywords beats deep paging. Default |
| integer | no | Hard cap on rows returned, so a broad niche cannot run away. Default |
| integer | no | Drop creators whose follower count is known and below this. A creator whose count the search did not show is kept, so a later profile read can fill it. Default |
| integer | no | Drop creators whose follower count is known and above this. Default |
| boolean | no | Launch scope is US creators. Discovery carries no country signal, so country_guess is null on every row of this actor and this field changes nothing here. It is accepted so the same input runs unchanged on the. Default |
| integer | no | Rows fetched at once. Leave empty for the measured per platform default; the measurement is in the README. Higher is faster and, above the measured point, loses rows. |
Nothing is required. Influencer Finder answers a run with no usable input with a row carrying row_status and error_reason rather than failing, and the tool mirrors that.
Pricing
Influencer Finder is pay per event on Apify. Every price below is flat across the FREE, BRONZE, SILVER, and GOLD tiers.
Event | Charged for | Price | Fires when |
| Actor start | $0.001 | Once per run, on start. Covers the run overhead. |
| Creator found | $0.007 | Once per creator row returned by keyword or niche discovery with a handle and a profile URL. A search that returns nothing charges nothing. |
Reading the output
Every row carries row_status and error_reason. A creator the actor could not read comes back as a row saying why, not as a gap in the list, so an absence is readable rather than inferred. Filter on row_status before loading a table.
Actor
Actor ID tpkedmloIIWtXx6sg. The wrapper calls the actor by that immutable ID rather than by its Store slug, so a Store rename never breaks it.
Suite
Actor | Actor ID | MCP server |
| ||
| ||
| ||
| ||
|
Built by Mamba Labs.
Available Tools
1 toolfind_influencersFind Influencers by Keyword or NicheARead-onlyIdempotent
Searches TikTok, Instagram, YouTube, Pinterest, Twitch, Threads, and podcasts for creators matching your keywords or one of eight curated niche keyword sets, then filters them to a follower range. Returns one flat row per creator per platform with handle, profile URL, display name, follower count, the search that found them, a stable creator_id, and similar creators from the same keyword cluster. Discovery only: it does not read bios, emails, or link in bio pages, which is what Influencer Profile Scraper and Link in Bio Scraper and Newsletter Detector do. Every row carries row_status and error_reason, so an absence is readable rather than silent. Charges $0.001 per run plus $0.007 per creator returned; a search that returns nothing charges the run start only. Requires an APIFY_TOKEN and consumes Apify credits. Read only.
| Name | Required | Description | Default |
|---|---|---|---|
| niche | No | Loads a curated set of search keywords for the niche (about 60 per niche, measured in the September 2026 pre-research). `max_keywords_per_niche` caps how many are used. Leave as custom to search only your keywords. Default: "custom". | |
| us_only | No | Launch scope is US creators. Discovery carries no country signal, so country_guess is null on every row of this actor and this field changes nothing here. It is accepted so the same input runs unchanged on the Influencer Lead List Builder, where it acts at the profile stage. Default: true. | |
| keywords | No | Search phrases, one per line, for example "budget travel" or "meal prep coach". Each keyword is searched on each platform. Use `niche` instead to load a curated keyword set. | |
| platforms | No | Which platforms to search, and which platforms a bare @handle is looked up on. A full profile URL carries its own platform and ignores this. Supported: TikTok, Instagram, YouTube, Pinterest, Twitch, Threads, and podcasts. Not X, not Facebook pages, not LinkedIn. | |
| batch_size | No | Rows fetched at once. Leave empty for the measured per platform default; the measurement is in the README. Higher is faster and, above the measured point, loses rows. | |
| follower_max | No | Drop creators whose follower count is known and above this. Default: 500000. | |
| follower_min | No | Drop creators whose follower count is known and below this. A creator whose count the search did not show is kept, so a later profile read can fill it. Default: 5000. | |
| max_creators | No | Hard cap on rows returned, so a broad niche cannot run away. Default: 200. | |
| max_keywords_per_niche | No | How many keywords from the niche set to search. 1 to 60. Default: 10. | |
| max_creators_per_keyword | No | Cap per search. Search engines honor the site: filter for the first page or two only, so 20 to 30 per keyword with more keywords beats deep paging. Default: 20. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false. The description adds substantial behavioral detail beyond these: it explains the flat row format, that every row carries row_status and error_reason for silent failure readability, the exact pricing model ($0.001 per run plus $0.007 per creator), and the APIFY_TOKEN requirement. It also explicitly says 'Read only,' consistent with the annotations. No contradiction found.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently organized: it leads with the core purpose, then the output shape, then exclusions, then error handling, then pricing, then auth. Every sentence contributes new information with no redundancy or fluff. The length is justified by the complexity of the tool (10 parameters, multi-platform, pricing, and exclusions). It is front-loaded with the most critical decision-relevant facts.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 10 parameters, no output schema, and no sibling tools, the description is remarkably complete. It covers the purpose, the exact output fields (handle, profile URL, display name, follower count, search term, creator_id, similar creators), what it does not do, error handling, pricing, auth requirements, and read-only nature. An agent has everything needed to decide when to call it and to interpret its results. There are no significant gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and each parameter has a detailed description in the schema, including defaults, ranges, and behavioral notes (e.g., us_only does nothing here, batch_size loses rows above measured point). The tool description itself does not add parameter-specific semantics beyond what the schema already provides. Since the schema carries the full burden, a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches multiple platforms for creators based on keywords or niche keyword sets, then filters by follower range. It explicitly names the platforms and the output structure. It also distinguishes itself from related tools (Influencer Profile Scraper, Link in Bio Scraper, Newsletter Detector) by stating what it does not do, so an agent can tell it apart even without sibling definitions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage context: it is 'Discovery only' and explicitly lists what it does not do, naming the alternatives that do those things. It also mentions that it requires an APIFY_TOKEN and consumes Apify credits, which is essential for invocation. This gives clear when-to-use and when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
v1.0.0- First observed
find_influencers
TDQS
Scored across 1 tool
Only one tool exists, so there is no possibility of confusion. The tool's purpose is clearly stated and references other services for adjacent functionality, further removing ambiguity.
The single name 'find_influencers' follows a clear verb_noun convention. Without additional tools, there is no inconsistency to flag.
One tool is on the low end of the scale; however, the tool is well-designed and the server explicitly scopes itself to discovery only. It still feels thin compared to a typical MCP server, so a middle score is appropriate.
For the stated discovery-only purpose, the tool covers search across multiple platforms, keyword sets, follower filtering, and stable IDs. It doesn't claim to provide profiles or contact info, so there are no major missing operations within its scope, though some minor enhancements like sorting or pagination could be useful.
Maintenance
Related MCP Connectors
Find and analyze influencers with creator search, lookalikes, profiles, posts, and transcripts.
Creator discovery & analytics across YouTube, Instagram, TikTok (30M+) + brand/sponsor intel.
AI influencer search on TikTok, Instagram, YouTube. Deinai MCP token required; credits per result.
Manage 230M+ influencers, track campaigns, and access real-time CIMS analytics via AI agents
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides comprehensive influencer marketing data from Instagram, YouTube, and TikTok via the CreatorDB Headless API V3. It enables advanced creator search, profile analysis, and access to performance metrics and audience demographics.-
- AlicenseAqualityDmaintenanceInstagram influencer discovery for AI agents. One tool (search_leads) with filters for category, country, city, keyword, gender, follower range; returns username, bio, public business email (where available), verified/business flags. Pay-per-call in USDC on Base or Solana via x402 — no API keys. Free demo mode returns 3 preview results. Live at https://socialintel.dev/mcp.11MIT

creatordb-mcp-serverofficial
AlicenseAqualityBmaintenanceExposes the CreatorDB V3 API as 42 tools for creator search, profile data, sponsor intelligence, and content search across YouTube, Instagram, and TikTok.4248 npm2MIT
Influship MCPofficial
AlicenseAqualityCmaintenanceEnables AI-native creator discovery for influencer marketing, including creator search, lookalikes, profile lookup, and Instagram post transcript analysis.1435 npm1MIT