Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 🌐 Social Media
  3. Social Media Search API β€” Twitter, Instagram, Reddit, TikTok (XPOZ)
Social Media Search API β€” Twitter, Instagram, Reddit, TikTok (XPOZ) logo
Health: ActiveRecent health check succeeded.Last checked 8/10/2026, 11:06:52 PM

Social Media Search API β€” Twitter, Instagram, Reddit, TikTok (XPOZ)

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository10 GitHub StarsTotal stargazers on GitHub for the source repository (10 stars).Visit Website

Twitter/X, Instagram, Reddit & TikTok data for AI agents. 1.5B+ posts. No API keys.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "social-media-search-api-twitter-instagram-reddit-tiktok-xpoz": {
      "command": "uvx",
      "args": [
        "xpoz"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing Alternatives🌐 More in Social Media

Documentation Overview

Xpoz MCP Server

Search Twitter, Instagram, Reddit & TikTok from any AI agent. Billions of posts indexed. Natural language queries. CSV exports up to 500K rows. No API keys needed.

MCP Registry Website

Remote MCP server β€” no local installation required. Connect via Streamable HTTP and authenticate with OAuth 2.1 (sign in with Google, no API keys to manage). Direct probes to https://mcp.xpoz.ai/mcp return 401 Unauthorized β€” that's expected; your MCP client handles the OAuth flow.

Quick Start

Claude Desktop / Cursor / Windsurf

Add to your MCP config:

config.json
{
  "mcpServers": {
    "xpoz": {
      "type": "streamable-http",
      "url": "https://mcp.xpoz.ai/mcp"
    }
  }
}

Claude Code, Codex, Gemini CLI

bash
# Claude Code
claude mcp add --transport http --scope user xpoz https://mcp.xpoz.ai/mcp

# Codex / Gemini CLI: see https://www.xpoz.ai/integrations

OpenClaw

bash
clawhub install xpoz-social-search

Then authenticate via the OAuth link when prompted. Eight more pre-built skills are available β€” see clawhub.ai/u/atyachin.

Try it without signing up

Want to kick the tires first? Mint a free trial token β€” no sign-in required, valid for 5 days. It returns a limited set of results so you can see the server in action:

bash
# Get a trial token (starts with "TRIAL")
curl -X POST https://api.xpoz.ai/api/trial/token
# -> { "success": true, "data": { "accessKey": "TRIAL...", "expiresInSeconds": 432000 }, ... }

Skip the OAuth flow by passing the trial token as a bearer header in your MCP config:

config.json
{
  "mcpServers": {
    "xpoz": {
      "type": "streamable-http",
      "url": "https://mcp.xpoz.ai/mcp",
      "headers": { "Authorization": "Bearer TRIAL..." }
    }
  }
}

For full results, grab your own API key or just connect via OAuth as shown above.


SDKs & CLI

If you'd rather call Xpoz directly from code or a terminal instead of through an MCP client:

TypeScript / Node.js

Terminal
npm install @xpoz/xpoz

Source: XPOZpublic/xpoz-ts-sdk.

Python

Terminal
pip install xpoz

Source: XPOZpublic/xpoz-python-sdk.

CLI

PlatformInstall command
macOS / Linux (Homebrew)brew install XPOZpublic/xpoz/xpoz-cli
macOS / Linux (one-liner)curl -fsSL https://raw.githubusercontent.com/XPOZpublic/xpoz-cli/main/install.sh | sh
Windows (PowerShell)iwr -useb https://raw.githubusercontent.com/XPOZpublic/xpoz-cli/main/install.ps1 | iex
Windows (winget)winget install Xpoz.XpozCli
Any platform with Python β‰₯ 3.10pip install xpoz-cli

Source: XPOZpublic/xpoz-cli.

All four channels speak the same MCP protocol against https://mcp.xpoz.ai/mcp under the hood, so any tool you see below is reachable from every surface. Get an API token at xpoz.ai/get-token.


Platforms & Tools

Twitter / X (14 tools)

ToolDescription
searchTwitterUsersFind users by name, bio, or keywords
getTwitterUserGet profile details (followers, bio, metrics)
getTwitterUsersByKeywordsDiscover users actively posting about topics
getTwitterUserConnectionsGet followers or following list
getTwitterPostsByKeywordsSearch tweets by keywords, hashtags, mentions
getTwitterPostsByAuthorGet tweets from a specific user
getTwitterPostsByIdsFetch specific tweets by ID
getTwitterPostCommentsGet replies to a tweet
getTwitterPostRetweetsGet retweets of a tweet
getTwitterPostQuotesGet quote tweets
getTwitterPostInteractingUsersUsers who liked/retweeted a post
countTweetsCount tweets matching a query (hourly/daily buckets)
checkOperationStatusPoll async export operations
cancelOperationCancel a running operation

Instagram (9 tools)

ToolDescription
searchInstagramUsersFind users by name or username
getInstagramUserGet profile details and metrics
getInstagramUsersByKeywordsDiscover users posting about topics
getInstagramUserConnectionsGet followers or following list
getInstagramPostsByKeywordsSearch posts by keywords or hashtags
getInstagramPostsByUserGet posts from a specific user
getInstagramPostsByIdsFetch specific posts by ID
getInstagramPostInteractingUsersUsers who liked/commented on a post
getInstagramCommentsByPostIdGet comments on a post

Reddit (9 tools)

ToolDescription
searchRedditUsersFind users by name
getRedditUserGet user profile and karma
getRedditUsersByKeywordsDiscover users active in topics
getRedditPostsByKeywordsSearch posts across subreddits
getRedditPostWithCommentsByIdGet a post with its comment tree
getRedditCommentsByKeywordsSearch comments by keywords
searchRedditSubredditsFind subreddits by name
getRedditSubredditWithPostsByNameGet a subreddit's metadata and recent posts
getRedditSubredditsByKeywordsDiscover subreddits by topic

TikTok (7 tools)

ToolDescription
searchTiktokUsersFind creators by name or username
getTiktokUserGet creator profile (followers, likes, bio, verification)
getTiktokUsersByKeywordsDiscover creators by topic in their post history
getTiktokPostsByKeywordsSearch videos by keywords or hashtags
getTiktokPostsByUserGet videos posted by a specific creator
getTiktokPostsByIdsFetch specific videos by ID
getTiktokCommentsByPostIdGet comments on a specific video

Tracking & Monitoring (3 tools)

For continuous brand monitoring and lead generation β€” Xpoz indexes new matching content as it appears.

ToolDescription
addTrackedItemsSubscribe to ongoing monitoring of a query, user, or subreddit across any platform
getTrackedItemsList your active tracked items with last-update timestamps
removeTrackedItemsStop monitoring tracked items by ID

Key Features

  • Natural language queries β€” describe what you want, Xpoz optimizes the search
  • CSV exports β€” up to 500K rows in a single download via async operations
  • Server-side pagination β€” handle large result sets efficiently
  • Field selection β€” request only the fields you need
  • Cache control β€” forceLatest: true bypasses cache for real-time data
  • Async operations β€” long-running exports with status polling
  • OAuth 2.1 β€” dynamic client registration with Google as the upstream identity provider, no API keys to manage

Use Cases

  • Lead generation β€” find people discussing problems your product solves
  • Influencer discovery β€” identify creators by what they post, not just follower count
  • Brand monitoring β€” track mentions, sentiment, and competitor activity
  • Market research β€” analyze trends and conversations at scale
  • Expert finding β€” discover domain authorities across platforms
  • Security intelligence β€” monitor vulnerability discussions before CVEs publish

Discovery surfaces (for AI agents and scanners)

These public, machine-readable endpoints describe Xpoz to crawlers and agentic clients:

SurfaceURL
MCP manifesthttps://www.xpoz.ai/.well-known/mcp.json
MCP tool catalog (descriptions + JSON-Schema parameters)https://www.xpoz.ai/.well-known/mcp/tools.json
Agent Skills index (agentskills.io v0.2.0)https://www.xpoz.ai/.well-known/agent-skills/index.json
llms.txthttps://www.xpoz.ai/llms.txt
llms-full.txthttps://www.xpoz.ai/llms-full.txt
discovery.txthttps://www.xpoz.ai/discovery.txt
Webhooks contracthttps://www.xpoz.ai/webhooks
Rate limits & 429 contracthttps://www.xpoz.ai/rate-limits

Links

  • 🌐 xpoz.ai
  • πŸ’° Pricing
  • πŸ“¦ MCP Registry
  • πŸ› οΈ ClawHub Skills
  • πŸ“– Documentation
  • πŸ™ XPOZpublic on GitHub β€” TS SDK, Python SDK, CLI, agent skills, cookbooks
  • 🍺 Homebrew tap

License

This repository contains configuration and documentation only. The Xpoz MCP server is a hosted service β€” see Terms of Service.

Related MCP Servers

View all in Social Media View all alternatives
  • S
    Sorsa Mcp

    MCP server for the Sorsa.io X/Twitter data API

    🌐 Social Media0 views
    Compare vs Sorsa Mcp β†’
  • C
    Captapi

    Social media data from YouTube, TikTok, Instagram & Facebook. 62 tools, one API key.

    🌐 Social Media0 views
    Compare vs Captapi β†’
  • Reddit Mcp Buddy logoReddit Mcp Buddy

    Browse Reddit posts, search content, and analyze user activity without API keys. Works out-of-the-box with Claude Desktop.

    🌐 Social Media4 views
    Compare vs Reddit Mcp Buddy β†’
  • S
    Social Media Api

    Unified social media API for AI agents. Access Facebook, Instagram, TikTok, and more.

    🌐 Social Media0 views
    Compare vs Social Media Api β†’

Frequently Asked Questions about Social Media Search API β€” Twitter, Instagram, Reddit, TikTok (XPOZ)

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "social-media-search-api-twitter-instagram-reddit-tiktok-xpoz": { "command": "npx", "args": ["-y", "Social Media Search API β€” Twitter, Instagram, Reddit, TikTok (XPOZ)"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewSocial Media Search API β€” Twitter, Instagram, Reddit, TikTok (XPOZ) AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/social-media-search-api-twitter-instagram-reddit-tiktok-xpoz?style=directory)](https://allmcps.com/mcp/social-media-search-api-twitter-instagram-reddit-tiktok-xpoz)
HTML Embed
<a href="https://allmcps.com/mcp/social-media-search-api-twitter-instagram-reddit-tiktok-xpoz"><img src="https://allmcps.com/api/badge/social-media-search-api-twitter-instagram-reddit-tiktok-xpoz?style=directory" alt="Social Media Search API β€” Twitter, Instagram, Reddit, TikTok (XPOZ) on AllMCPs" /></a>

Technical Specs & Signals

Category🌐Social Media
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimePython
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars10
GitHub Star CountTotal stargazers on GitHub representing community popularity (10 stars).
Last commit20d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Jul 21, 2026
43Quality signal: Fair Β· 43/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity6/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in 🌐 Social Media β†’Best MCP servers for Social Media β†’Alternatives to Social Media Search API β€” Twitter, Instagram, Reddit, TikTok (XPOZ) β†’Install in Claude DesktopInstall in CursorInstall in VS Code