Gorilla MCP
The Gorilla MCP server helps you find early SaaS users by identifying demand signals across social platforms, then refine your idea, draft outreach, and plan acquisition strategies.
find_leads– Run the full lead-generation pipeline across Reddit, YouTube, X, and TikTok, returning scored leads with relevance scores, categories, and outreach angles (costs 1 run credit; takes 30–90 seconds)refine_idea– Generate clarifying questions to sharpen your product idea before searchingenhance_idea– Synthesize your answers into a polished product description for better search resultsexpand_themes– Generate search keywords, pain points, competitor names, and adjacent niches from a product ideasearch_source– Search a single platform (Reddit, X/Twitter, YouTube, or TikTok) with custom queries; optionally attach results to an existing rundraft_outreach– Draft a platform-tuned outreach message (Reddit comment, X reply, YouTube comment, TikTok comment, Instagram DM, etc.) for a specific leadplan_acquisition_funnel– Group leads from a completed run by channel, score, and category, and produce a structured first-week acquisition plan with send volumes and follow-up cadenceget_run– Fetch results for a specific completed run by IDlist_runs– List all previous lead-generation runsbilling_status– Check your current plan, weekly usage, referral credits, and total available run credits
Search Reddit for discussions and leads related to a product idea, retrieving relevant posts with scores and outreach angles.
Search TikTok for content and trends related to a product concept to identify potential users.
Search YouTube for videos and comments mentioning pain points or demand for a product idea.
Gorilla MCP Server
Model Context Protocol server for Gorilla. Find your first 100 SaaS users by searching Reddit, X, YouTube, LinkedIn, and Bluesky for real demand signals. Start free with 100 credits. You spend one credit per qualified lead (hot or warm); low-relevance results are free.
Learn more: usegorilla.app · Real run examples · How Gorilla compares · Blog
Setup
Run directly from GitHub with npx:
GORILLA_API_KEY=grla_... npx -y @usegorilla/mcpOr clone and run locally:
git clone https://github.com/opusforge/gorilla-mcp
cd gorilla-mcp
npm install && npm run build
GORILLA_API_KEY=grla_... node dist/index.jsGet your API key
Sign up at usegorilla.app. Free tier: 100 credits, no card.
Sign in at platform.usegorilla.app.
Menu, API Keys, Create.
Copy the key (shown once).
Configure in Claude Code
Add to your Claude Code settings:
{
"mcpServers": {
"gorilla": {
"command": "npx",
"args": ["-y", "@usegorilla/mcp"],
"env": {
"GORILLA_API_KEY": "grla_your_key_here"
}
}
}
}Configure in Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"gorilla": {
"command": "npx",
"args": ["-y", "@usegorilla/mcp"],
"env": {
"GORILLA_API_KEY": "grla_your_key_here"
}
}
}
}Related MCP server: Bluesky Social MCP
Tools
search
Search Reddit, X, YouTube, LinkedIn, and Bluesky in parallel for posts where people express demand for what you describe. Returns results ranked Hot / Warm / Cold by buying intent. Takes 30-90 seconds. One credit per qualified lead (Hot or Warm); Cold results are free, and a failed search is refunded. LinkedIn is a paid-plan source; the free tier covers Reddit, X, YouTube, and Bluesky.
Parameters:
query(required) - what to search for, in your own wordssource(optional) -reddit,twitter,youtube,linkedin,bluesky, orall(default)since(optional) -24h|7d|30d|all, or an ISO date. Default7d.limit(optional) - max results, 1-200. Default 50.
Returns: A search_id plus scored results (source, channel, title, URL, score, Hot/Warm/Cold) and the credits charged.
get_search
Fetch the current state and results for a search by its search_id. Use it to recover a search that timed out client-side, or to re-read a recent one. Free.
Parameters: search_id (required)
billing_status
Check your plan and remaining credit balance. Free.
Returns: Plan (free or monthly) and credit balance (tier + pack = total).
Example workflow
1. search("a language learning app for travelers")
-> search_id + scored leads across Reddit, X, YouTube, LinkedIn, Bluesky,
ranked Hot / Warm / Cold by buying intent. One credit per Hot/Warm lead.
2. get_search(search_id) -> re-read or recover results without searching again
3. billing_status() -> plan + credits remainingInstall via Smithery
Available at smithery.ai/server/opusforge/gorilla-mcp. Smithery distributes a pre-built MCPB bundle that any MCPB-compatible client can install in one click.
Environment variables
Variable | Required | Description |
| Yes | Your API key (starts with |
| No | Override the API base. Default |
No other configuration is required — the package talks to the public API with your key.
Pricing
Free tier: 100 credits, granted once, no card. A one-time trial.
Paid plan: $14.99/mo for 2,000 credits. Unused credits roll over.
Metering: one credit per qualified lead (hot or warm). Low-relevance results are free. Failed searches refund.
Sources: the free tier covers Reddit, X, YouTube, and Bluesky. The paid plan adds LinkedIn (all five).
search spends one credit per qualified lead it returns; Cold results are free. get_search and billing_status are free.
See usegorilla.app for the full product.
Available Tools
9 toolsaccount.billingARead-onlyIdempotent
Check the authenticated user's current plan, remaining weekly runs, referral credits, and whether any API keys are active. Behavior: read-only; hits the billing-status edge function which derives the live state from the billing + beta_access tables. Free, no credit consumed. Idempotent. Usage: call this BEFORE leads.find or leads.search if you want to confirm the user has runs available, or after a billing-error response to surface why the call was blocked. Useful for the agent to decide whether to recommend an upgrade. Do NOT poll this on a schedule, the values only change when Stripe webhooks fire (sub-minute polling adds no signal). Returns: { plan ('free'/'weekly'/'monthly'/'yearly'/'lifetime'), runs_this_week, weekly_limit, referral_credits, has_api_keys, plus billing_enabled and trial_expires_at when applicable }.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, destructiveHint, idempotentHint. Description adds that it's free, no credit consumed, hits a specific edge function, and values only change on Stripe webhooks, providing rich behavioral context beyond annotations.
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?
Description is somewhat long but well-organized with clear sections (Behavior, Usage, Returns). Every sentence adds value, though minor redundancy could be trimmed.
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?
Despite lacking an output schema, the description enumerates return fields and their possible values. Combined with usage context, it fully equips the agent to understand and invoke the tool correctly.
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?
No parameters exist in the schema, so description doesn't need to add parameter info. Baseline for 0 params is 4, and the description provides no parameter details, which 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 it checks billing status including specific fields like plan, runs, credits. It distinguishes itself from sibling tools (e.g., leads.find) by being about billing rather than lead search.
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?
Explicitly advises to call before leads.find or leads.search to confirm runs availability, and after billing-error responses. Also warns against polling on a schedule, providing 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.
idea.expandARead-only
Generate the keyword scaffolding (core keywords, adjacent niches, pain points, competitor names, exclusion terms) for a product idea, without running searches. Behavior: hits the same theme-expansion endpoint leads.find calls internally as its first step. Consumes one credit. Stateless; nothing persists. Usage: call this when the user wants to see the search scaffolding before committing to a full run, or when planning manual outreach copy and you want the buyer-language vocabulary. Do NOT use this as a precursor to leads.find in the same session, leads.find runs theme expansion itself; calling both is double-billing. Returns: { core_keywords, adjacent_niches, pain_points, competitor_names, exclusion_terms } as string arrays.
| Name | Required | Description | Default |
|---|---|---|---|
| idea | Yes | The app idea to expand into search themes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true. Description adds key behaviors: 'Consumes one credit,' 'Stateless; nothing persists,' and that it uses the same endpoint as leads.find. This goes beyond the annotations to explain side effects and internal mechanics, but does not cover all potential edge cases.
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 well-structured with clear sections (Behavior, Usage, Returns). It is somewhat lengthy but every sentence adds value, including the warning about double-billing. However, it could be slightly more concise by removing minor redundancy.
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 simple tool with one parameter and no output schema, the description covers everything: purpose, behavior, usage, return structure, and important caveats (credit consumption, statelessness, double-billing risk). No gaps remain for effective agent usage.
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 coverage is 100% with a clear description for 'idea'. The description adds context by framing the parameter as a 'product idea' and specifying the output categories (core keywords, etc.), which helps the agent understand the transformation.
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?
'Generate the keyword scaffolding... for a product idea, without running searches' clearly states the action and output. It distinguishes from sibling leads.find by noting that leads.find runs theme expansion itself, thus avoiding conflating the two.
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?
Explicitly states when to use: 'when the user wants to see the search scaffolding before committing to a full run, or when planning manual outreach copy.' It also gives an explicit when-not: 'Do NOT use this as a precursor to leads.find... calling both is double-billing.' This provides clear alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
idea.refineARead-only
Run one round of conversational refinement on a SaaS idea before searching for leads. Behavior: hits the same /refine endpoint the usegorilla.app site uses. Stateless on the server side; the MCP caller must carry history across turns. Does not write any DB rows and does NOT consume a credit. Idempotent. Usage: call this on the first turn with just {idea}, ask the returned question to the user, then call again with the same idea, the previous refined_idea as current_refined_idea, and the new {question, answer} appended to history. Stop when status is 'ready' (readiness_score crosses ~75) or after max_turns. Do NOT call idea.refine after leads.find has already run, the refinement is a pre-search step. Returns: status (ready or needs_answer), refined_idea (full text), readiness_score (0-100) with reason, missing_info list, audience_model, and one next question with suggested options (or null if ready).
| Name | Required | Description | Default |
|---|---|---|---|
| idea | Yes | The original raw idea text. Stays the same across turns. | |
| current_refined_idea | No | The latest refined_idea returned by a previous idea.refine call. Omit on the first turn. | |
| history | No | Prior turns: each entry is the question the server asked and the user's answer. Empty / omitted on the first turn. | |
| language | No | Output language. 'all' (default) auto-detects from the idea text. | |
| turn | No | 1-based turn number. Lets the server stop sooner if needed. | |
| max_turns | No | Maximum rounds before the server forces status='ready'. Default 5. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description claims the tool is idempotent, but annotations set idempotentHint=false, creating a direct contradiction. While the description adds useful behavioral details (stateless, no DB writes, no credit consumption), the contradiction undermines transparency and could mislead the agent.
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 dense but well-organized: purpose first, then behavioral notes, usage instructions, and return fields. Every sentence adds value; there is no redundancy or fluff. It is concise for the complexity involved.
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?
Given the tool's complexity (multi-turn conversational refinement) and no output schema, the description fully explains the return structure (status, refined_idea, readiness_score, etc.) and the stopping condition (score ~75 or max_turns). It is self-contained and complete.
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 coverage is 100%, so baseline is 3. The description adds context beyond schema descriptions, such as that 'idea' stays the same across turns, 'current_refined_idea' should be omitted on first turn, and 'history' is appended each turn. This enriches the meaning for the agent.
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 refines a SaaS idea conversationally, with a specific verb ('refine') and resource ('SaaS idea'). It distinguishes itself from siblings by warning not to call after leads.find, establishing it as a pre-search step.
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 step-by-step usage: first turn with just idea, then subsequent turns with history. It also states when not to use ('Do NOT call idea.refine after leads.find has already run') and implies alternatives (leads.find, idea.expand).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
leads.findA
Find ranked social posts where people are describing the problem the user's SaaS solves, across Reddit, X, YouTube, and TikTok. Behavior: dispatches the full server-side pipeline (theme expansion, parallel platform search, AI scoring), persists a run row, blocks until the run completes (typically 60 to 120 seconds), and returns the scored leads. Consumes one credit on the user's plan. Idempotent only via the resulting run_id (use runs.get to re-read without spending another credit). Usage: call this when the user wants the full lead hunt for an idea. Do NOT call it twice for the same idea in the same session, use runs.get to re-analyse. Pair with idea.refine first if the idea is one or two words. After it returns, hand the run_id to outreach.plan for a Week-1 outreach plan and to outreach.draft for per-lead messages. Returns: scored leads (source, channel, title, url, lead_score 0-1, matched_signals including category and outreach hints), plus a header line with totals per source.
| Name | Required | Description | Default |
|---|---|---|---|
| idea | Yes | The app idea or product description to find leads for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses pipeline dispatch, blocking (60-120s), credit consumption, and idempotency via run_id, adding context beyond annotations.
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?
Somewhat lengthy but every sentence adds value; front-loaded with purpose and behavior.
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?
Given no output schema, the description thoroughly details return structure and behavior (blocking, credit, run_id), making it complete for the agent.
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?
Adds context to the 'idea' parameter (e.g., 'the problem the user's SaaS solves', suggests refining short ideas), which improves upon the schema's basic description.
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 finds ranked social posts across multiple platforms matching the user's SaaS problem, distinguishing it from siblings like leads.search and idea.refine.
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?
Provides explicit guidance: when to call, not to call twice, pair with idea.refine, and hand run_id to outreach tools. Also warns against duplicate spending.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
leads.searchA
Run an ad-hoc search against ONE social platform (Reddit, X, YouTube, or TikTok) with caller-provided queries. Behavior: hits the platform-specific search edge function directly, bypassing theme-expansion and AI scoring. Consumes one credit per call. If a run_id is passed, results are written to that run for inspection later via runs.get. Without run_id, results are returned but not persisted. Usage: call this when leads.find under-fetched on a specific platform, or to test custom query phrasings (the queries you pass in ARE the queries that get run, no expansion). Do NOT use this as a substitute for leads.find when you want full pipeline behaviour: results from leads.search are unscored. To search all four platforms with AI scoring, call leads.find instead. Returns: leads array (raw posts with platform fields, no lead_score) and a count.
| Name | Required | Description | Default |
|---|---|---|---|
| source | Yes | Which platform to search. Use 'x' for X (formerly Twitter); 'twitter' is accepted as an alias. | |
| queries | Yes | Search queries to run on the platform | |
| run_id | No | Optional run ID to attach results to an existing run (writes to DB) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that it bypasses AI scoring, consumes one credit per call, and conditionally persists results via run_id. Annotations only provide basic hints (readOnlyHint=false), so the description carries the transparency burden well, though it could mention that it is effectively non-caching or rate-limited.
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 well-structured: purpose first, then behavior, usage, and return info. Each sentence adds value, but it is slightly verbose for a search tool (could shorten the alternative guidance to one sentence).
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?
With no output schema, the description explains the return format (leads array with no lead_score, plus count). It also covers credit consumption and integration with runs. For a tool with 3 parameters, it is nearly complete, though it omits any error conditions or pagination behavior.
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 coverage is 100%, and the description adds meaning: it explains that queries are passed through unaltered, that source accepts aliases ('twitter' for 'x'), and that run_id causes persistence. This goes beyond the schema's basic descriptions.
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 states a specific verb and resource ('Run an ad-hoc search against ONE social platform') and lists the exact platforms, clearly distinguishing from the sibling leads.find via behavioral differences (bypassing theme-expansion and AI scoring).
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 explicitly says when to use this tool ('when leads.find under-fetched on a specific platform, or to test custom query phrasings') and when not to ('Do NOT use this as a substitute for leads.find when you want full pipeline behaviour'). Also provides an alternative (leads.find).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
outreach.draftARead-only
Generate a platform-tuned outreach message for a specific lead the user wants to engage. Behavior: hits the draft-outreach edge function which uses an LLM with platform-specific tone profiles (Reddit paragraph, X 280-char reply, YouTube comment, TikTok DM, Instagram caption). Persists nothing. Consumes one credit per draft. Each call is independent; the drafter does not remember previous drafts. Usage: call this once per lead the user picked from a leads.find result. Pick the right outreach_action for the situation: 'comment_post' for a top-level reply on a thread, 'reply_comment' to respond to a specific comment (provide reply_to_author + reply_to_text), 'dm' or 'dm_post_author' for a DM, 'channel_about' for a YouTube About-tab cold intro, 'profile_check' for stale posts where you want a follow-up rather than a direct reply. Do NOT call outreach.draft for COMPETITOR-flagged leads (their matched_signals contains 'category:COMPETITOR') as outreach to a competitor's content is bad form. Do NOT use it to write generic copy unrelated to a specific post. Returns: { draft } as a single string ready to paste, no surrounding chrome.
| Name | Required | Description | Default |
|---|---|---|---|
| idea | Yes | The refined product idea (used as the writer's voice) | |
| source | Yes | Which platform the lead is on | |
| outreach_action | Yes | How to engage. dm/dm_post_author for DMs, comment_post for top-level comments, reply_comment to respond to a specific thread comment, channel_about for YouTube About-tab contact, profile_check for stale posts. | |
| post_title | Yes | Title of the lead post | |
| post_body | Yes | Body / snippet of the lead post | |
| post_handle | No | OP handle (e.g. 'u/founder', '@user'). Optional but improves drafts. | |
| language | No | Output language. Defaults to 'en'. | |
| reply_to_author | No | For reply_comment: the author of the comment being replied to. | |
| reply_to_text | No | For reply_comment: the comment text being replied to. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses key behaviors beyond annotations: persists nothing, consumes one credit per draft, and each call is independent. No contradiction with readOnlyHint=true or other annotations.
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?
Well-structured and concise: starts with purpose, then behavior, usage, and exclusions. Every sentence is necessary and informative.
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?
Thorough for a complex tool with 9 parameters and no output schema. Covers behavior, side effects, usage patterns, and negative examples. Return format is adequately described.
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 coverage is 100% with good descriptions. The description adds extra context for outreach_action options and clarifies optional parameters like post_handle. However, schema already handles basic semantics.
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 it generates platform-tuned outreach messages for a specific lead. It distinguishes from sibling tools like outreach.plan and leads.find by specifying the purpose and context.
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?
Provides explicit usage guidance: call once per lead from leads.find, detailed explanations of outreach_action variants, and negative instructions to avoid COMPETITOR-flagged leads and generic copy.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
outreach.planARead-onlyIdempotent
Build a Week-1 outreach plan from a completed run's HIGH-intent leads, with per-channel send cadence and per-category action register. Behavior: client-side synthesis. Fetches the run via runs.get (no extra credit), buckets HIGH leads (lead_score >= 0.7) by source and matched_signals category, then applies fixed cadence heuristics (Reddit / X tolerate 3-4 sends/day; YouTube / TikTok / Instagram only 2 because each comment is more visible). Idempotent and free. Usage: call this immediately after leads.find completes if the user wants a concrete action plan rather than a raw lead dump. Skip it if HIGH lead count is under 5 (the heuristic falls apart on tiny pools, refine the idea and re-run instead). Do NOT call this on a still-running run, results will be incomplete. Returns: a multi-line text plan with the HIGH/MED/total breakdown, per-channel daily send target + follow-up window, per-category action register (ACTIVE_SEARCH, PAIN_OR_FRUSTRATION, SWITCHING, COMPARISON, FEATURE_GAP, COMPETITOR, TUTORIAL, DISCUSSION), and an end-of-week deprioritisation rule.
| Name | Required | Description | Default |
|---|---|---|---|
| run_id | Yes | The run_id returned by leads.find |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate idempotent and read-only; description adds client-side synthesis, fetching via runs.get, bucketing leads at >=0.7, per-channel cadence heuristics (Reddit/X 3-4/day, others 2/day), and free. No contradictions.
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?
Well-structured with purpose first, then behavior, usage, returns. Somewhat lengthy but every sentence adds value. Could be slightly more concise but clear.
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?
Given single param with full schema and no output schema, description fully explains return format (multi-line text with breakdown, cadence, action register, deprioritisation rule) and prerequisites (run completed, HIGH leads >=5). Complete.
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?
Only one parameter (run_id) with 100% schema coverage, description merely restates the schema (run_id returned by leads.find). Adds no new meaning beyond schema, so baseline 3.
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?
Clearly states it builds a Week-1 outreach plan from HIGH-intent leads with per-channel cadence and per-category action register. Distinguishes from siblings like leads.find (raw lead dump) and outreach.draft (drafting messages).
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?
Explicitly says to call immediately after leads.find, skip if HIGH lead count is under 5 (heuristic fails), and not to call on still-running run. Provides clear when-to-use and when-not-to-use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
runs.getARead-onlyIdempotent
Fetch the full result for a previously-started run by its run_id. Behavior: read-only DB query; no external calls and no credit consumed. Idempotent and safe to poll. If status is still 'running', returns whichever leads have already arrived (search-* functions stream into the same posts row as they finish). Usage: call this to re-analyse an earlier run without spending another credit, to hand a fresh leads payload to outreach.plan or outreach.draft, or to poll a long-running leads.find job. Do NOT call this without an existing run_id; use runs.list first if you need to find one. Returns: run_id, status (running / completed / failed / partial), idea text, results array (posts with source, channel, title, url, lead_score, matched_signals), and metadata { total_posts, elapsed_ms, errors[] }.
| Name | Required | Description | Default |
|---|---|---|---|
| run_id | Yes | The run ID returned by leads.find (e.g. 'run_abc123'). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, non-destructive, idempotent. Description adds valuable behavioral context: read-only DB query, no external calls, no credit consumed, 'safe to poll', and partial results if status is 'running'.
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?
All sentences are relevant and front-loaded. Slightly verbose with repeated mentions of 'outreach.plan or outreach.draft' and 'leads.find', but still efficient.
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?
No output schema, but description fully explains return structure: run_id, status, idea text, results array with field details, and metadata. Covers all necessary information for the agent.
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 coverage is 100% with run_id description already clear. Description adds meaning by specifying the source of run_id (from leads.find) and giving example format 'run_abc123', plus contextualizing its usage.
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?
Clear verb 'Fetch the full result' and resource 'previously-started run by its run_id'. Distinguishes from siblings by mentioning runs.list for finding run_ids and leads.find for starting runs.
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?
Explicit when-to-use scenarios: re-analyse earlier run without spending credit, hand leads to outreach.draft/plan, poll long-running job. Also states what NOT to do: 'Do NOT call this without an existing run_id; use runs.list first.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
runs.listARead-onlyIdempotent
List the user's recent lead-generation runs, newest first, capped at 50. Behavior: read-only DB query scoped to the authenticated user. No external calls, no credit consumed. Idempotent. Usage: call this when the user wants to revisit a previous lead hunt, when you need a run_id to feed into runs.get / outreach.plan without re-running, or to confirm whether a recent leads.find has completed. Do NOT use this to enumerate other users' runs (the endpoint is user-scoped). Returns: { runs: [{ id, idea, status (completed/running/failed/partial), created_at (UNIX seconds), total_posts, product_title }] }, ordered by created_at desc.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses read-only DB query, user-scoped, no external calls, no credit consumed, idempotent. Annotations already cover readOnlyHint and idempotentHint, but the description adds context on scope and credit consumption, which is helpful but not essential.
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?
Concise and well-structured: front-loaded with main functionality, then behavior, usage guidance, and return format. Every sentence adds value with no filler.
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?
Given no parameters and no output schema, the description fully covers the tool's purpose, behavior, usage context, and return format (fields, ordering). No 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?
No parameters in schema (100% coverage). Description doesn't need to add parameter details; baseline 4 for zero parameters.
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?
Clearly states the tool lists the user's recent lead-generation runs with specific constraints: newest first, capped at 50. Distinguishes from siblings like runs.get and leads.find by specifying the resource and scope.
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?
Provides explicit when-to-use scenarios (revisit previous hunt, get run_id, confirm completion) and a when-not-to-use (enumerate other users' runs). Names alternative tools like runs.get and outreach.plan.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct part of the lead generation workflow: billing, idea refinement, lead searching, outreach, and run management. No two tools have overlapping purposes; descriptions clearly differentiate them.
All tools follow a consistent 'category.action' naming pattern (e.g., account.billing, leads.find, outreach.draft). The pattern is predictable and uniformly applied across the entire set.
With 9 tools, the set covers the end-to-end process from billing check to outreach planning without being excessive. Each tool serves a clear, necessary function within the server's domain.
The toolset covers the main workflow comprehensively: billing, idea refinement, multiple search modes, outreach drafting and planning, and run history. Minor gaps include lack of run deletion or account update tools, but these are not essential for core functionality.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
GrowthHackers copywriting prompts (Meta/Google Ads, email, VSL) as MCP tools — search & generate.
Social media MCP: publish, schedule & analyze posts on TikTok, Instagram, YouTube, LinkedIn & X
Hosted MCP for X/Twitter and Reddit. 12 read-only tools, no API keys, free during beta.
Connect Claude or any MCP client to Thread Otter, a GTM agent for founders. Free tools with no key: find_buyer_threads (give it a website URL and get recent Reddit threads where that product's buyers are asking for it, report in ~3 minutes), reddit_demand_board (weekly demand across 40 communities with thread receipts), and subreddit_rules (promotion posture for 2,000+ profiled subreddits). With an API key: read your buying-intent mentions across Reddit, X, LinkedIn, and Bluesky, check your pipeline, and propose posts and reply drafts in your voice. Propose-only by design: nothing sends without your approval flow. Keys at threadotter.com/connect.
Related MCP Servers
- AlicenseBqualityDmaintenanceA plug-and-play MCP server that enables AI assistants to browse, search, and read Reddit content through the PRAW library.618MIT
- MIT
- AlicenseCqualityDmaintenanceA comprehensive MCP server for X/Twitter featuring over 70 tools for research, engagement, and publishing with granular permission-based access control. It includes specialized Playwright-powered tools for fetching X articles and supports extensive account management and thread operations.6318MIT
- AlicenseAqualityNot gradedmaintenanceAn MCP server for cross-platform social media research that enables scraping, semantic search, and analysis across seven major social platforms. It uses Apify for data retrieval and stores results in a local database for AI-powered trend detection and profile analysis.14
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/opusforge/gorilla-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server