openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Xpoz Social Search

Search Twitter, Instagram, and Reddit posts in real time. Find social media mentions, track hashtags, discover influencers, and analyze engagement — 1.5B+ posts indexed. Social listening, brand monitoring, and competitor research made easy for AI agents.

媒体与内容

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.5.0

统计:⭐ 7 · 2k · 9 current installs · 10 all-time installs

7

安装量(当前) 10

🛡 VirusTotal :良性 · OpenClaw :良性

Package:atyachin/xpoz-social-search

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's requirements and runtime instructions line up with its stated purpose — it uses an mcporter CLI and an xpoz-setup OAuth flow to call Xpoz's backend — but you should verify the mcporter npm package and the xpoz-setup skill before installing.

目的

The name/description (social search across Twitter/Instagram/Reddit) matches the runtime instructions: all calls are via an mcporter CLI to Xpoz MCP endpoints. Requiring a CLI (mcporter) and an OAuth setup skill (xpoz-setup) is reasonable. Minor inconsistency: the registry summary lists no required skills or network, while SKILL.md metadata declares a dependency on xpoz-setup and network mcp.xpoz.ai — functionally coherent but the registry met…

说明范围

SKILL.md only instructs the agent to invoke the mcporter CLI to call specific xpoz.* operations, poll operation status, and use CSV export for large results. It does not instruct reading unrelated local files, environment variables, or sending data to unknown endpoints beyond the declared mcp.xpoz.ai. The setup step defers OAuth to the xpoz-setup skill (browser or device code flow), which is appropriate for acquiring tokens.

安装机制

Install is an npm package (mcporter) that creates the mcporter binary. npm installs are common but execute third-party code on the host — this is moderate risk (not an arbitrary URL download). Recommend verifying the mcporter package provenance (publisher, npm page, checksum) before installing.

证书

The skill itself requests no environment variables or local config paths. Authentication is delegated to the xpoz-setup skill via OAuth 2.1 (expected for a SaaS integration). There are no unexplained credentials requested here.

持久

The skill is not always-enabled and does not request elevated or system-wide configuration changes. It relies on an external CLI and an auth setup skill; autonomous invocation is allowed by default but not combined with other red flags.

综合结论

This skill appears coherent with its description, but before installing: 1) Inspect the mcporter npm package (publisher, homepage, versions, download counts) — npm packages run code during install and provide the mcporter binary used at runtime. 2) Inspect the xpoz-setup skill because it handles OAuth and will obtain/store your access tokens; confirm where tokens are stored and what scopes are requested. 3) Confirm the network endpoint (mcp.xp…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Xpoz Social Search」。简介:Search Twitter, Instagram, and Reddit posts in real time. Find social media men…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/atyachin/xpoz-social-search/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: xpoz-social-search
description: "Search Twitter, Instagram, and Reddit posts in real time. Find social media mentions, track hashtags, discover influencers, and analyze engagement — 1.5B+ posts indexed. Social listening, brand monitoring, and competitor research made easy for AI agents."
homepage: https://xpoz.ai
metadata:
  {
    "openclaw":
      {
        "requires": { "bins": ["mcporter"], "skills": ["xpoz-setup"], "network": ["mcp.xpoz.ai"], "credentials": "Xpoz account (free tier) — auth via xpoz-setup skill (OAuth 2.1)" },
        "install": [{"id": "node", "kind": "node", "package": "mcporter", "bins": ["mcporter"], "label": "Install mcporter (npm)"}],
      },
  }
tags:
  - social-media
  - search
  - twitter
  - instagram
  - reddit
  - mcp
  - xpoz
  - research
  - intelligence
  - discovery
  - social-search
  - twitter-search
  - social-listening
  - brand-monitoring
  - hashtag
  - mentions
  - influencer
  - engagement
  - viral
  - trending
---

# Xpoz Social Search

**Multi-platform social search: 1.5B+ posts across Twitter, Instagram, Reddit.**

Search posts, find people, discover conversations. Built on Xpoz MCP.

## Setup

Run `xpoz-setup` skill. Verify: `mcporter call xpoz.checkAccessKeyStatus`

## Tool Reference

| Tool | Platform | Purpose |
|------|----------|---------|
| `getTwitterPostsByKeywords` | Twitter | Search tweets |
| `getInstagramPostsByKeywords` | Instagram | Search posts |
| `getRedditPostsByKeywords` | Reddit | Search posts |
| `getTwitterUsersByKeywords` | Twitter | Find users |
| `getInstagramUsersByKeywords` | Instagram | Find users |
| `getRedditUsersByKeywords` | Reddit | Find users |
| `getTwitterUser` | Twitter | Profile by username/id |
| `getInstagramUser` | Instagram | Profile by username/id |
| `getRedditUser` | Reddit | Profile by username |
| `searchTwitterUsers` | Twitter | Search by name |
| `checkOperationStatus` | — | **Poll for results** |
| `getRedditSubredditsByKeywords` | Reddit | Find subreddits |

**Params:** `query`, `startDate`/`endDate` (YYYY-MM-DD), `limit`, `fields`

## Patterns

**Search posts:**
```bash
mcporter call xpoz.getTwitterPostsByKeywords query="MCP" startDate=2026-01-01
mcporter call xpoz.checkOperationStatus operationId=op_abc # Poll every 5s
```

**Find people:**
```bash
mcporter call xpoz.getTwitterUsersByKeywords query='"open source" AND LLM'
```

**Profile:**
```bash
mcporter call xpoz.getTwitterUser identifier=elonmusk identifierType=username
```

**Boolean:** `AND`, `OR`, `NOT`, `"exact"`, `()`
```bash
query="Tesla AND cars NOT stock"
```

**CSV export:** Use `dataDumpExportOperationId` from search, poll for URL (up to 64K rows).

## Examples

**Competitive intel:**
```bash
mcporter call xpoz.getTwitterPostsByKeywords query="CompetitorName"
mcporter call xpoz.getTwitterUsersByKeywords query="CompetitorName"
```

**Influencers:**
```bash
mcporter call xpoz.getInstagramUsersByKeywords query="fitness transformation"
```

**Communities:**
```bash
mcporter call xpoz.getRedditSubredditsByKeywords query="startup"
```

## Notes

⚠️ **Always poll** `checkOperationStatus` — searches return `operationId`, not data  
🚀 **Use `fields`** for performance  
📊 **CSV for scale** via `dataDumpExportOperationId`  
📅 **Dates:** `YYYY-MM-DD` (current: 2026)

**Free tier:** 100 searches/mo, 1K results/search | [xpoz.ai](https://xpoz.ai)