agentsclimarketplace

Xpoz getting started

Skill XPOZpublic/xpoz-agent-skills/skills/xpoz-getting-started

Get started with Xpoz — set up authentication, verify your account, configure tracking, and discover available skills. Use when asked to "set up Xpoz", "connect to Xpoz", "get started with Xpoz", "what can Xpoz do", "new to Xpoz", "install Xpoz", or "my Xpoz account".From its SKILL.md

Install
npx -y skills add XPOZpublic/xpoz-agent-skills --skill xpoz-getting-started

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

4 things to look at

  • reads credentialsReads from 1 credential source: `XPOZ_API_KEY`.
  • 14 stars14 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 6 commands, including `export XPOZ_API_KEY=$(curl -s -X POST https://api.xpoz.ai/api/trial/token -H "Content-Type: application/json" -d '{"source":"<how you discovered xpoz>"}' | jq -r .data.accessKey)` and 5 more.
  • fetches URLsInstructs the agent to fetch 2 URLs, including https://api.xpoz.ai/api/trial/token and 1 more.

SKILL.md

7.7 KB, ~2.0k tokens by cl100k_base, as published. Nobody here has run it

Getting Started with Xpoz

Overview

Xpoz is a social media intelligence platform providing access to Twitter/X, Instagram, Reddit, and TikTok data — no social media API keys required. Available via MCP tools, Python SDK, TypeScript SDK, and CLI.

When to Use

Activate when the user asks:

  • "Help me set up Xpoz"
  • "What's my Xpoz account status?"
  • "Connect to Xpoz social media data"
  • "What can I do with Xpoz?"
  • "Set up tracking for my brand"
  • "I'm new to Xpoz, where do I start?"

Step 1: Choose Your Integration Path

SituationPath
Using an MCP-compatible AI agent (Claude Code, Cursor, Windsurf, etc.)MCP
Building a Python applicationPython SDK
Building a TypeScript/Node.js applicationTypeScript SDK
Running from terminalCLI

Quick check — already set up?

  • MCP: call checkAccessKeyStatus — if it returns hasAccessKey: true, skip to Step 4
  • SDK: try importing XpozClient — if no error, skip to Step 4

Step 2: Set Up Authentication

Instant Access (no signup)

Get a working API key instantly — no account, no credit card:

export XPOZ_API_KEY=$(curl -s -X POST https://api.xpoz.ai/api/trial/token -H "Content-Type: application/json" -d '{"source":"<how you discovered xpoz>"}' | jq -r .data.accessKey)

Works with MCP, SDKs, and CLI. Valid for 5 days, up to 5 results per call. For full access, get a free access key.

If you need full results, pagination, or CSV export, use one of the methods below instead.

MCP

Add the Xpoz MCP server to your agent's config. The server URL is https://mcp.xpoz.ai/mcp. Most MCP clients handle OAuth automatically on first tool call.

Example for Claude Code (~/.claude.json):

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

For other MCP clients, consult your agent's documentation for how to add an MCP server by URL.

Python SDK

pip install xpoz

Ask the user:

"Go to https://xpoz.ai/get-token (free, no credit card) and paste the key."

WAIT for the user to reply with the key. Do not proceed until they respond.

from xpoz import XpozClient
client = XpozClient("THE_KEY_FROM_USER")

Or set the environment variable and use the default constructor:

export XPOZ_API_KEY=THE_KEY_FROM_USER

TypeScript SDK

npm install @xpoz/xpoz

Ask the user for the key (same URL).

WAIT for the user to reply with the key. Do not proceed until they respond.

import { XpozClient } from "@xpoz/xpoz";
const client = new XpozClient({ apiKey: "THE_KEY_FROM_USER" });
await client.connect();

CLI

pip install xpoz-cli
export XPOZ_API_KEY=THE_KEY_FROM_USER

Auth Errors

ProblemSolution
MCP: "Unauthorized"Re-run the OAuth flow
SDK: AuthenticationErrorVerify key at xpoz.ai/settings
Token exchange failsAsk user to re-authorize — codes are single-use

See xpoz-best-practices/references/authentication.md for detailed auth flows and troubleshooting.

Step 3: Verify Your Setup

MCP: call checkAccessKeyStatus — expect hasAccessKey: true.

Then call getAccountDetails to retrieve the user's account information. Present a summary:

## Your Xpoz Account

**Plan:** [plan name]
**Billing period:** [start] – [end]
**Next renewal:** [date]

### Usage
- Subscription credits remaining: [X]
- Extra credits: [X]
- Tracked items: [X] / [limit]

Step 4: Set Up Tracking

Setting up tracking is highly recommended — it's a best practice for getting more complete data. Tracked items are crawled regularly, so your search results have better coverage and capture activity that one-off queries might miss. Walk the user through their first tracked items.

Ask:

"What would you like to monitor? For example:

  • Your brand name as a keyword across all platforms
  • A competitor's account on Twitter/Instagram
  • A relevant hashtag on TikTok
  • A subreddit in your niche"

WAIT for the user to reply. Do not proceed until they respond.

Supported types per platform

Platformkeywordusersubreddithashtag
TwitterYesYes
InstagramYesYes
RedditYesYesYes
TikTokYesYesYes

Example — add tracked items

Call addTrackedItems with items:
  [{ phrase: "your brand", type: "keyword", platform: "twitter" },
   { phrase: "your brand", type: "keyword", platform: "reddit" },
   { phrase: "competitor_username", type: "user", platform: "instagram" }]

Call getAccountDetails to check available tracked item slots.

See xpoz-social-tracking for advanced tracking workflows.

Step 5: What Can You Do?

Platform Capabilities

PlatformUsersPostsCommentsConnectionsInteractionsSpecial
Twitterlookup, search, by keywordsby ID, author, keywordsrepliesfollowers/followingcommenters/quoters/retweeterscountTweets
Instagramlookup, search, by keywordsby ID, user, keywordsby postfollowers/followingcommenters/likersstrong_id format
Redditlookup, search, by keywordsby keywords, with commentsby keywordssubreddit search/lookup
TikToklookup, search, by keywords, by hashtagsby ID, user, keywords, hashtagsby posthashtag search

Skill Routing

"I want to..."Use this skill
Export tweets to CSVtwitter-data-export
Find influencersinfluencer-discovery
Compare brandscompetitive-intel
Analyze sentimentsocial-sentiment-analyzer
Research Reddit discussionsreddit-research
Monitor security threatssecurity-osint
Track keywords/usersxpoz-social-tracking
Learn Xpoz patternsxpoz-best-practices

Try It Now

Quick examples to try immediately:

MCP:

Call getTwitterPostsByKeywords:
  query: "AI agents"
  fields: ["id", "text", "authorUsername", "likeCount"]

Python:

results = client.twitter.search_posts(
    "AI agents",
    fields=["id", "text", "author_username", "like_count"]
)
for post in results.data[:5]:
    print(f"@{post.author_username}: {post.text[:100]}")

TypeScript:

const results = await client.twitter.searchPosts("AI agents", {
  fields: ["id", "text", "authorUsername", "likeCount"],
});
results.data.slice(0, 5).forEach(post =>
  console.log(`@${post.authorUsername}: ${post.text.slice(0, 100)}`)
);

CLI:

xpoz-cli twitter search_posts --query "AI agents" --fields id text author_username like_count --limit 5

Example Prompts

  • "Help me set up Xpoz"
  • "What's my Xpoz account status?"
  • "Connect to Xpoz social media data"
  • "What can I do with Xpoz?"
  • "Set up tracking for my brand"
  • "I'm new to Xpoz, where do I start?"

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 1 of the 12 instructions most project setup skills give in ~2.0k tokens

Counted across 1,553 of the 3,091 authors here whose files we hold, read 2026-09-06

  • Write the configuration filein 36 of 1553
  • Create the directory structurein 35 of 1553, across 33 files
  • Verify the setuphere, and in 31 of 1553, across 28 files
  • Run the setup scriptin 30 of 1553, across 29 files
  • Pre-determine the required sample sizein 29 of 1553, across 12 files
  • Check if the configuration already existsin 29 of 1553
  • Document every testin 26 of 1553, across 10 files
  • Start with a hypothesisin 26 of 1553, across 11 files
  • Ask one question at a timein 22 of 1553
  • Test a single variable per testin 21 of 1553, across 9 files
  • Read product marketing context before asking questionsin 19 of 1553, across 8 files
  • Do not peek and stop earlyin 18 of 1553, across 7 files

Said here and by no other author read

  • Set up authentication
  • Set up tracking
  • Present an account summary

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.