All skills
twitter Content & Influencer

Amplifier Outreach List

Turn one viral tweet into a reach-ranked list of amplifiers for your next launch

Run this skill with your agent
1. Connect the MCP server
https://apidirect.io/mcp?token=YOUR_API_KEY
2. Then just say to your agent
Pull a reach-ranked list of everyone who amplified tweet {tweet_id} so I can line up launch boosters above {min_followers} followers.
In clients that support MCP prompts (Claude Desktop, Claude Code, Cursor) this skill appears as a prompt named tweet-amplifier-outreach-list. Any agent can also call get_skill(skill_id="tweet-amplifier-outreach-list") to pull these steps on demand.

What it does

A single viral tweet is a pre-qualified list of people who already love your message. This reconstructs its retweet, quote, and reply graph, filters the quote and reply branches for friendly sentiment, and reach-ranks everyone into an outreach list.

Who it's for: Founders and growth marketers planning a launch

Inputs

Input Required Description Example
tweet_id Yes Numeric id of the viral tweet to mine for amplifiers 1750112233445566778
min_followers No Minimum follower count for an amplifier to make the final list 5000

How your agent runs it

  1. 1
    twitter_tweet_retweets(tweet_id={tweet_id}, pages=10)

    Collect every account that retweeted the post as raw amplifier candidates.

  2. 2
    twitter_tweet_quotes(tweet_id={tweet_id}, pages=5, get_sentiment=true)

    Add quote-tweeters, keeping only positive or neutral polarity, and union them with the retweeters while deduping.

  3. 3
    twitter_tweet_comments(tweet_id={tweet_id}, pages=3, get_sentiment=true)

    Fold in the most engaged, favorably-toned repliers as warm amplifier prospects.

  4. 4
    twitter_user_profile(username=<amplifier_username>)

    Enrich each amplifier with followers_count and verified status, keep those above {min_followers}, and rank the list by reach.

Delivers: A reach-ranked, sentiment-filtered list of amplifiers to recruit for your next launch.

Tools used

The full playbook

This is exactly what the MCP returns to your agent (via the tweet-amplifier-outreach-list prompt or get_skill tool), with your inputs filled in.

SKILL: Amplifier Outreach List
A single viral tweet is a pre-qualified list of people who already love your message. This reconstructs its retweet, quote, and reply graph, filters the quote and reply branches for friendly sentiment, and reach-ranks everyone into an outreach list.

You are running this skill on API Direct via its MCP tools. Execute the steps below yourself by calling the named tools in order — values in <angle brackets> come from a previous step. Then deliver the result described at the end.

INPUTS:
  - tweet_id (required): <tweet_id — ASK THE USER>
  - min_followers (optional): (optional — e.g. 5000)

STEPS:
  1. Tool `twitter_tweet_retweets` — twitter_tweet_retweets(tweet_id=<tweet_id>, pages=10)
     Collect every account that retweeted the post as raw amplifier candidates.
  2. Tool `twitter_tweet_quotes` — twitter_tweet_quotes(tweet_id=<tweet_id>, pages=5, get_sentiment=true)
     Add quote-tweeters, keeping only positive or neutral polarity, and union them with the retweeters while deduping.
  3. Tool `twitter_tweet_comments` — twitter_tweet_comments(tweet_id=<tweet_id>, pages=3, get_sentiment=true)
     Fold in the most engaged, favorably-toned repliers as warm amplifier prospects.
  4. Tool `twitter_user_profile` — twitter_user_profile(username=<amplifier_username>)
     Enrich each amplifier with followers_count and verified status, keep those above <min_followers>, and rank the list by reach.

DELIVER: A reach-ranked, sentiment-filtered list of amplifiers to recruit for your next launch.

Note: each underlying tool call is billed at its normal endpoint price; get_sentiment adds a small per-page surcharge. Page through results as needed but stop once you have enough to deliver the outcome.