Remove Creators from a Watchlist: MCP Tool for AI Agents

Removes the given profileIds from a watchlist and returns how many were removed plus the new profile count. Free to call. Use get_watchlist to find the profileIds.

Prune a watchlist by removing creators by profile id. Free to call, returns the number removed and the updated count, so an agent can keep a competitor set current as accounts become irrelevant.

Free

How agents use it

Connect the Viral Outliers MCP server once and the remove_watchlist_profiles tool becomes available to your agent alongside all other skills:

claude mcp add --transport http viral-outliers https://viraloutliers.com/api/mcp \
  --header "Authorization: Bearer so_live_YOUR_KEY"

In Claude.ai or ChatGPT, add a custom connector pointing at https://viraloutliers.com/api/mcp. Your agent then calls remove_watchlist_profiles on its own whenever the task needs it.

Parameters

NameTypeDescription
watchlistId*stringWatchlist id.
profileIds*string[]Internal profile ids to remove.

What it does

Deletes the listed members from the watchlist (ids that are not members are ignored) and returns removed and profileCount. Get the ids from get_watchlist.

Pricing

This skill is free and never spends credits.

Agent workflows

  • Prune: get_watchlist → identify stale accounts → remove_watchlist_profiles.

Frequently asked questions

How do I take a creator off a watchlist?

Call remove_watchlist_profiles with the watchlistId and the creator's profileId (from get_watchlist). It is free and returns the updated member count.