Skip to main content
Glama
mambalabsdev

Influencer Finder MCP Server

Influencer Finder MCP Server

Smithery Glama score MCP Registry npm version npm downloads license mcpservers.org

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-finder

Claude 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

keywords

array

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.

niche

string

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

max_keywords_per_niche

integer

no

How many keywords from the niche set to search. 1 to 60. Default 10.

platforms

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.

max_creators_per_keyword

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

max_creators

integer

no

Hard cap on rows returned, so a broad niche cannot run away. Default 200.

follower_min

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

follower_max

integer

no

Drop creators whose follower count is known and above this. Default 500000.

us_only

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

batch_size

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

Actor start

$0.001

Once per run, on start. Covers the run overhead.

creator-found

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

Built by Mamba Labs.

Available Tools

1 tool
find_influencersFind Influencers by Keyword or NicheA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
nicheNoLoads 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_onlyNoLaunch 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.
keywordsNoSearch 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.
platformsNoWhich 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_sizeNoRows 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_maxNoDrop creators whose follower count is known and above this. Default: 500000.
follower_minNoDrop 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_creatorsNoHard cap on rows returned, so a broad niche cannot run away. Default: 200.
max_keywords_per_nicheNoHow many keywords from the niche set to search. 1 to 60. Default: 10.
max_creators_per_keywordNoCap 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

A4.7/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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. 1 tool updatev1.0.0
    • First observedfind_influencers

TDQS

A4.6/5.0

Scored across 1 tool

Disambiguation5/5

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.

Naming Consistency5/5

The single name 'find_influencers' follows a clear verb_noun convention. Without additional tools, there is no inconsistency to flag.

Tool Count3/5

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.

Completeness4/5

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

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides 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.
    -
  • A
    license
    A
    quality
    D
    maintenance
    Instagram 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.
    1
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Exposes the CreatorDB V3 API as 42 tools for creator search, profile data, sponsor intelligence, and content search across YouTube, Instagram, and TikTok.
    42
    48 npm
    2
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI-native creator discovery for influencer marketing, including creator search, lookalikes, profile lookup, and Instagram post transcript analysis.
    14
    35 npm
    1
    MIT