XPOZpublic

Xpoz MCP — AI skill for Claude Code

AI community

Xpoz MCP Server — Search Twitter, Instagram, Reddit & TikTok from AI agents.

How to install Xpoz MCP

This entry records only its repository, not the path inside it, so there is no exact command to give. Open XPOZpublic/xpoz-mcp and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Xpoz MCP does

Xpoz MCP Server — Search Twitter, Instagram, Reddit & TikTok from AI agents. Billions of posts indexed.

Alternatives in AI

  • Agency Agents — A complete AI agency at your fingertips - From frontend wizards to Reddit community ninjas, from whimsy inject 148k ★
  • Firecrawl MCP Server — 🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM c 6.1k ★
  • Octocode — Structural code intelligence for AI agents — semantic search, knowledge graphs, and a built-in MCP server in o 464 ★

README

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](https://img.shields.io/badge/MCP_Registry-listed-blue)](https://registry.modelcontextprotocol.io/?q=xpoz) [![Website](https://img.shields.io/badge/xpoz.ai-visit-green)](https://xpoz.ai)

**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:

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

Claude Code, Codex, Gemini CLI

# 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

clawhub install xpoz-social-search

Then authenticate via the OAuth link when prompted. More pre-built skills are available — see [`clawhub.ai/u/atyachin`](https://clawhub.ai/u/atyachin).

Docker (stdio-only clients)

The repository ships a small Docker image that bridges stdio to the remote server through [`mcp-remote`](https://www.npmjs.com/package/mcp-remote), for clients that can only launch local commands:

docker build -t xpoz-mcp .
docker run -i --rm -e XPOZ_API_KEY=your-key xpoz-mcp

`XPOZ_API_KEY` is optional: without it the bridge falls back to the OAuth sign-in flow, which needs a browser. Get a key at [`xpoz.ai/get-token`](https://www.xpoz.ai/get-token).


SDKs & CLI

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

TypeScript / Node.js

npm install @xpoz/xpoz

Source: [`XP