| name | tweetclaw |
| description | X/Twitter automation plugin. Post tweets, reply, like, retweet, follow, unfollow, send DMs, search tweets, look up users, extract bulk data, monitor accounts, run giveaway draws, and compose algorithm-optimized tweets via Xquik REST API. Use when the user asks about Twitter, X, tweets, followers, social media automation, tweet analytics, or giveaway management. Trigger with "post tweet", "search tweets", "extract followers", "run giveaway", "monitor account", "compose tweet", "trending topics".
|
| allowed-tools | Read, Bash(curl:*), WebFetch |
| version | 1.5.3 |
| author | Burak Bayir <burak@xquik.com> |
| license | MIT |
| tags | ["twitter","x","automation","social-media","giveaway","monitoring","scraping","mcp"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
TweetClaw
Overview
TweetClaw provides full X/Twitter automation via the Xquik REST API. It covers 121 endpoints across 12 categories: tweet operations, user lookups, search, bulk extractions (23 tools), giveaway draws, account monitoring, webhook delivery, AI composition, style analysis, drafts, write actions, and account management.
Two MCP tools are available via the hosted server at xquik.com/mcp (not bundled with this plugin). See the MCP setup section in Resources for configuration instructions.
Prerequisites
-
An API key from xquik.com (starts with xq_)
-
Set XQUIK_API_KEY environment variable or configure via OpenClaw:
openclaw config set plugins.entries.tweetclaw.config.apiKey "$XQUIK_API_KEY"
Instructions
Reading Data
Search tweets, fetch user profiles, get timelines, bookmarks, notifications, DM history, and trending topics.
curl -H "x-api-key: $XQUIK_API_KEY" \
"https://xquik.com/api/v1/x/tweets/search?query=AI+agents&count=20"
curl -H "x-api-key: $XQUIK_API_KEY" \
"https://xquik.com/api/v1/x/users/elonmusk"
curl -H "x-api-key: $XQUIK_API_KEY" \
"https://xquik.com/api/v1/x/tweets/1234567890"
Writing Data
Post tweets, delete tweets, like/unlike, retweet, follow/unfollow, send DMs, update profile, upload media.
curl -X POST -H "x-api-key: $XQUIK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Hello from TweetClaw!"}' \
"https://xquik.com/api/v1/x/tweets"
curl -X POST -H "x-api-key: " \
curl -X POST -H \