Skip to main content
Glama

jev-kol-mcp

English · 中文

MCP server powered by Jev, TypeSafe's System One model. It finds TikTok and YouTube micro-KOLs, classifies their niche, and scores campaign fit with typed decisions.

Node License: MIT MCP

Jev does not write the search results or the emails. It answers typed questions: one choice for the creator's niche, then a score, probabilities, and choices for whether that creator fits a campaign. Search and storage stay in this server. Drafts stay a local template.

What you can ask

Tool

What it does

Needs

search_kols

Find creators by platform, keyword, and follower range

APIFY_API_TOKEN

score_fit

Score one creator against one campaign, 0–100

JEV_API_KEY

draft_email

First outreach email, plus a follow-up for day 3

JEV_API_KEY

draft_email checks that the Jev key is present, then fills a local English template. The body is not written by Jev.

Related MCP server: Creator Research MCP

How a search runs

flowchart LR
  A[search_kols] --> B{Local SQLite<br/>enough and fresh?}
  B -->|yes| Z[Return cached rows]
  B -->|no| E[Apify]
  E --> G[Jev niche label]
  G --> H[Save to ~/.jev-kol-mcp]
  H --> Z

The same platform, keyword, and follower range is reused for 7 days. Cached rows are not scraped again and are not re-labeled. A failed Jev call does not fail the search: the profile is stored with an empty niche.

Follower bounds are sent to the scraper. This server still drops anything outside the range before it returns rows.

Platform

Apify actor

What the range filters

TikTok

memo23/tiktok-user-search-scraper

followers

YouTube

parsebird/youtube-channel-search-scraper

public subscribers

FETCH_LIMIT is how many matching profiles to request. Default 12. All of them are stored. limit on the tool is how many to return: default 5, maximum 20.

YouTube's countryHint is left at the actor default. It biases ranking. It does not keep only channels from that country.

What comes back

Each stored creator can include:

handle · displayName · followers · bio · contactEmail · emailType · profileUrl · verified · videoCount · totalLikes · totalViews · location · bioLinks · primaryNiche

Emails are read from the public bio with a regex. No public email means null. TikTok bios from the current actor have no link list, so bioLinks is empty there. YouTube links are URLs without anchor text. Avatars are not stored.

location is the TikTok region code when the actor reports one, or the YouTube channel country. It is often empty on TikTok.

totalLikes is TikTok-only. totalViews is YouTube-only.

Niche label

Jev picks one primary niche from the display name and bio. A thin bio, or a bio with no clear main theme, becomes Other.

Beauty_Skincare · Men_Grooming · Fashion_Apparel · Luxury_Jewelry · Tech_Gadgets · Software_SaaS_AI · Gaming_Esports · Fitness_Wellness · Outdoor_Adventure · Home_Living · Food_Cooking · Parenting_Kids · Pet_Care · Automotive_Vehicles · Finance_Investing · Education_Career · Arts_DIY_Crafts · Entertainment_Humor · Other

The label is not an input to score_fit. Campaign fit is a separate Jev call.

Campaign fit

score_fit sends the handle, bio, and campaign description to https://api.typesafe.ai/v1/systemone. It does not see follower counts, location, or the niche label. The model defaults to jev-latest (JEV_MODEL).

Field

Meaning

score

0–100, from Jev's 0–3 fit score

dimensions.fit

0 unrelated · 1 weak · 2 partial · 3 strong

dimensions.niche

Probability that the bio and the product are the same category

dimensions.tone

review · lifestyle · tutorial · sincere · unknown

dimensions.priceBand

Inferred price band, not the creator's rate

suitablePriceRange

That band in USD, or null

dimensions.outreach

Probability that a first email is worth sending now

dimensions.mismatch

none · niche · tone · price · evidence

Tone is judged from the bio only. Price bands are food 15–80, everyday 20–100, beauty 25–120, fitness 30–150, home 30–200, tech 80–400, luxury 200–800. unknown means the bio is not enough.

A strong fit requires niche, tone, and price to agree. One clear miss cannot score as a strong fit.

Install

npm install
cp .env.example .env
npm run build

Node.js 18 or newer. npm run watch recompiles into dist/ on save. npm start speaks MCP over stdio. It is not an HTTP server, and it does not print a prompt.

Logs go to stderr. Leave stdout for the MCP protocol.

Missing keys return setup instructions. The process stays up. Placeholder values such as your_apify_api_token_here count as missing.

Variable

Required

Default

APIFY_API_TOKEN

for search

JEV_API_KEY

for niche labels, fit scores, and email drafts

JEV_MODEL

no

jev-latest

FETCH_LIMIT

no

12

Client-injected environment variables win over .env.

The SQLite file lives at ~/.jev-kol-mcp/kols.sqlite. Deleting it creates an empty database on the next search. Clearing an npx cache does not delete it.

Cursor

Build first so dist/index.js exists. Point the client at that file. Put real keys in env. Do not commit them.

{
  "mcpServers": {
    "jev-kol": {
      "command": "node",
      "args": ["/absolute/path/to/jev-kol-mcp/dist/index.js"],
      "env": {
        "APIFY_API_TOKEN": "your_apify_api_token",
        "JEV_API_KEY": "your_jev_api_key",
        "FETCH_LIMIT": "12"
      }
    }
  }
}

env values are strings, including FETCH_LIMIT. Reload the MCP server after changing dist/ or this file. The name jev-kol is only the key in this snippet. Cursor shows whatever key you choose.

Try it:

Use jev-kol search_kols on TikTok for skincare creators with 10,000 to 200,000 followers. Return 5. List handle, followers, location, primary niche, and bio. Do not score them.

License

MIT

Available Tools

3 tools
draft_emailDraft outreach emailA

Draft a first collaboration email and a follow-up for day 3. A missing JEV_API_KEY returns setup guidance.

ParametersJSON Schema
NameRequiredDescriptionDefault
kolHandleYesKOL handle
offerDetailsYesFee, deliverables, product, or other offer terms
campaignDescriptionYesCampaign description, inserted into the body

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden of behavioral disclosure. It does usefully disclose that a missing JEV_API_KEY triggers setup guidance, but it does not state whether the tool sends emails or only returns drafts, nor any other failure modes or side effects.

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?

Two sentences with no filler. The primary action is front-loaded, and the missing-key behavior is conveyed in a single additional sentence. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 3-parameter drafting tool, the description covers the core output and a key error case. However, since there is no output schema, it could be more explicit about what a successful response contains, though 'Draft... email' strongly implies the returned drafts.

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%, so the schema already documents all three parameters. The description adds no extra meaning about kolHandle, offerDetails, or campaignDescription beyond what the schema provides, so the baseline score of 3 applies.

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 action ('Draft') and the specific deliverable ('a first collaboration email and a follow-up for day 3'). This is distinct from the sibling tools search_kols and score_fit, which perform search and scoring rather than content generation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance about when to choose this tool over search_kols or score_fit, nor any mention of prerequisites or placement in a workflow. The only conditional information is the missing-key behavior, which is not a usage guideline.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

score_fitScore campaign fitA

Ask Jev System One to judge niche, tone, price band, and whether outreach is worth sending. A missing JEV_API_KEY returns setup guidance.

ParametersJSON Schema
NameRequiredDescriptionDefault
kolBioYesKOL bio
kolHandleYesKOL handle, for example @maya.glow
campaignDescriptionYesCampaign or product description

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral disclosure burden. It usefully notes that a missing JEV_API_KEY returns setup guidance, but it does not disclose the success output format, whether the operation is read-only, or other failure modes. Some context is added, but significant behavioral gaps remain.

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?

Two sentences with no wasted words. The main purpose is front-loaded, and the important API-key edge case is included as a compact second sentence.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple three-parameter scoring tool, this is fairly complete: it states what the tool judges, implies the output concept, and flags a key environment dependency. It does not detail the return payload, but no output schema exists and the description still gives enough context for correct invocation.

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%, so the schema already documents all three parameters. The description adds context about evaluation dimensions (niche, tone, price band) but does not map them to specific parameters or add meaning beyond the parameter descriptions. Baseline 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's action: ask Jev System One to judge niche, tone, price band, and outreach-worthiness. This is specific and distinct from sibling tools like search_kols and draft_email, so there is no ambiguity about what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this tool is used when a fit judgment is needed, but it does not explicitly say when to use it versus alternatives like search_kols or draft_email, nor does it explain whether it should precede or follow those tools. Usage context is only implied, not stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_kolsSearch micro-KOLsA

Search micro-KOLs by platform, niche, and follower range. Reads the local SQLite cache first. If that is thin and the community pool is enabled, reads the shared pool next. Otherwise calls Apify and passes the follower range to the actor. Fresh profiles are labeled with Jev before they are stored. They are uploaded only when sharing is on. A missing APIFY_API_TOKEN returns setup guidance and does not exit the process.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoHow many rows to return. Default 5, maximum 20
nicheYesNiche keyword, for example skincare, fitness, or gadgets
platformYesPlatform: tiktok or youtube
maxFollowersYesMaximum followers, inclusive
minFollowersYesMinimum followers, inclusive

TDQS

A4.1/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and excels. It discloses the read order (local SQLite, then shared pool if enabled and thin, otherwise Apify), the Jev labeling of fresh profiles, upload behavior conditioned on sharing, and the graceful handling of a missing APIFY_API_TOKEN (returns setup guidance without exiting). This is thorough and goes well beyond what the schema could convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a compact paragraph that front-loads the core purpose and then efficiently lists behavioral details. Every sentence contributes new information without redundancy. It is slightly longer than strictly necessary but remains focused and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (5 parameters, no output schema, multiple data sources), the description is quite complete. It covers the data source selection, labeling, sharing, and error handling. It does not describe the return format or pagination, but no output schema exists, so the agent is left to infer the response shape. Minor gaps exist but are not critical for basic invocation.

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%, so the baseline is 3. The description adds minimal extra meaning—only that the follower range is passed to the Apify actor, which is already implied by the schema. It does not clarify the limit parameter or other nuances beyond what the schema already states.

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 micro-KOLs by platform, niche, and follower range, with a specific verb and resource. It distinguishes itself from siblings (score_fit, draft_email) by its search-oriented purpose and data sources. The opening sentence is direct and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains the internal data source fallback logic (cache → pool → Apify) but does not explicitly tell an agent when to choose this tool over siblings or when not to use it. It implies usage through its purpose but lacks direct alternatives or exclusion criteria. The sibling names suggest distinct functions, but no explicit routing guidance is given.

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. 3 tool updatesv0.1.0
    • First observeddraft_email
    • First observedscore_fit
    • First observedsearch_kols

TDQS

A4/5.0

Scored across 3 tools

Disambiguation5/5

Each tool targets a distinct stage of the outreach workflow: searching candidates, scoring their fit, and drafting emails. No two tools could plausibly be confused for one another.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (search_kols, score_fit, draft_email). The pattern is uniform and predictable.

Tool Count5/5

Three tools is well-scoped for a focused micro-KOL outreach server. Each tool serves a clear purpose in the pipeline without redundancy or bloat.

Completeness4/5

The search→score→draft workflow covers the core outreach preparation lifecycle. Minor gaps exist such as no tool to manage saved KOLs or actually send emails, but these are outside the apparent scope.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Brings social media analytics and content intelligence into any MCP-compatible AI agent, enabling analysis of your own videos, competitor research, and creator discovery via a hosted OAuth-authenticated server.
    10
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables AI agents to automate the full affiliate e-commerce workflow across Shopee and TikTok Shop, including product hunting, seller auditing, review mining, and generating video storyboards and VideoFactory projects. It provides nine MCP tools for search, intelligence extraction, database queries, and system health checks.
    9
    1
    MIT