xpoz-best-practices

Solid

Reference guide for using Xpoz effectively. Load this skill whenever working with Xpoz MCP tools, SDKs, or CLI — it ensures correct query syntax, optimal field selection, proper pagination, and best practices for every Xpoz interaction. Covers authentication, query syntax (boolean operators, date filtering), response modes (fast/paging/CSV), field selection, tracking setup, and all platform tool references (Twitter, Instagram, Reddit, TikTok). Use for ANY Xpoz-related work, not just explicit best-practices questions.

AI & Automation 14 stars 5 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
39
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Xpoz Best Practices ## Overview Xpoz is a social media intelligence platform providing access to **Twitter/X**, **Instagram**, **Reddit**, and **TikTok** data through MCP tools, Python SDK, TypeScript SDK, and CLI — no social media API keys required. ## When to Use Load this skill for **any Xpoz interaction** — not just when the user explicitly asks about best practices. It provides the context needed to use Xpoz tools correctly: - Calling any Xpoz MCP tool (query syntax, field selection, response modes) - Writing code with the Python or TypeScript SDK - Using the Xpoz CLI - Setting up authentication or tracking - Troubleshooting errors or empty results - Choosing which tool to use for a specific task ## Quick Start **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`): ```json { "mcpServers": { "xpoz": { "url": "https://mcp.xpoz.ai/mcp", "transport": "streamable-http" } } } ``` **Python SDK:** ```bash pip install xpoz ``` ```python from xpoz import XpozClient client = XpozClient() # reads XPOZ_API_KEY env var results = client.twitter.search_posts("artificial intelligence") print(f"Found {results.pagination.total_rows:,} tweets") client.close() ``` **TypeScript SDK:** ```bash npm install @xpoz/xpoz ``` ```typescript import { XpozClient } from "@xpoz/xpoz"; const client = new XpozClient...

Details

Author
XPOZpublic
Repository
XPOZpublic/xpoz-agent-skills
Created
5 months ago
Last Updated
1 weeks ago
Language
N/A
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category