ATXP Skill: Real-Time Web Search, AI Images, Music, Video, and X/Twitter — One CLI
24,000+ downloads and 15 stars — atxp by @emilioacc is a multi-capability skill that bundles five distinct AI-powered tools under one authentication layer. Where most skills wrap a single tool or API, ATXP provides real-time web search, AI image generation, AI music creation, AI video generation, and X/Twitter search — all accessible with the same npx atxp command after a single login.
What ATXP Provides
ATXP is a paid API service offering five capabilities:
| Command | Capability |
|---|---|
npx atxp search <query> | Real-time web search |
npx atxp image <prompt> | AI image generation |
npx atxp music <prompt> | AI music generation |
npx atxp video <prompt> | AI video generation |
npx atxp x <query> | X/Twitter search |
The key differentiator: real-time. The web search and X/Twitter search return current results, not cached or index-delayed data.
Authentication
One-time setup:
# Interactive login
npx atxp login
# Load credentials into environment
source ~/.atxp/config
# Verify authentication
echo $ATXP_CONNECTIONOnce authenticated, ATXP_CONNECTION contains the credential string used by all subsequent commands.
Real-Time Web Search
# Basic search
npx atxp search "latest Claude 4 model capabilities"
# More specific queries
npx atxp search "TypeScript 5.4 new features release notes"
npx atxp search "React Server Components production examples 2026"Real-time search is the capability that fills the gap Claude has by default — current events, today's documentation updates, recent announcements.
AI Media Generation
# Image generation
npx atxp image "minimalist logo for a developer productivity app, dark background"
# Music generation
npx atxp music "upbeat lo-fi hip hop for focus, 60bpm, no lyrics"
# Video generation
npx atxp video "short product demo animation, screen recording style, 15 seconds"The generated assets are returned via URL or download, depending on the ATXP API response format.
X/Twitter Search
# Search recent X posts
npx atxp x "openclaw skills launch"
npx atxp x "Claude Code new feature announcement"
npx atxp x "from:steipete site:github.com"X/Twitter search gives access to real-time social signals — useful for market research, monitoring discussions, or checking how a topic is trending on social media.
MCP Server Integration
For integration into agent workflows, ATXP exposes MCP servers:
| MCP Server | Tool Name |
|---|---|
search.mcp.atxp.ai | search_search |
image.mcp.atxp.ai | image_create_image |
music.mcp.atxp.ai | music_create |
video.mcp.atxp.ai | create_video |
x-live-search.mcp.atxp.ai | x_live_search |
Programmatic access via TypeScript:
import { atxpClient, ATXPAccount } from '@atxp/client';
const client = await atxpClient({
mcpServer: 'https://search.mcp.atxp.ai',
account: new ATXPAccount(process.env.ATXP_CONNECTION),
});
const result = await client.callTool({
name: 'search_search',
arguments: { query: 'your search query' },
});The MCP server approach is useful when you want to call ATXP tools from within a larger application, not just from the CLI.
How to Install
clawhub install atxpUse Cases
Research and content creation:
- Search for current information on a topic
- Generate visual assets for blog posts or presentations
- Create background music for videos or demos
- Monitor X/Twitter discussions about a product or topic
Development workflows:
- Search for current documentation (when the model's training data is outdated)
- Generate placeholder images for UI prototypes
- Search X for community discussions about a library or tool
Market research:
- Real-time competitive intelligence via web search
- Social sentiment monitoring via X search
- Trend detection across multiple signals
Practical Tips
-
Real-time search fills the freshness gap — For anything that's changed in the past 6-12 months,
atxp searchis more reliable than asking Claude directly. Use it as a complement to Claude's knowledge, not a replacement. -
X/Twitter search for community signals — Before asking Claude "what are the common complaints about library X?", run
npx atxp x "library X problems"to see current discussions. -
Store
ATXP_CONNECTIONin your shell profile — Thesource ~/.atxp/configstep is needed each session unless you add it to.bashrc/.zshrc. -
MCP integration for production use — For any workflow that calls ATXP repeatedly, the TypeScript client via MCP is more reliable than shell commands in a loop.
-
Check ATXP service status if commands fail — ATXP is a paid external service. Occasional availability issues are possible; check their status page if commands consistently fail.
Considerations
- Paid service required — ATXP is not free. All capabilities require an active ATXP account and API access.
ATXP_CONNECTIONmust be set — Commands fail silently or with auth errors if the credential isn't in the environment. Verify withecho $ATXP_CONNECTIONbefore running.- Media generation latency — Image, music, and video generation typically take longer than search queries. Expect seconds to minutes depending on complexity.
- X/Twitter search results vary — Public tweet availability depends on X's API access tier. Some historical or private content may not be accessible.
The Bigger Picture
ATXP represents a different model for AI tool access: a consolidated API that handles authentication once and provides multiple capabilities through a consistent interface. For Claude workflows that need current information, visual assets, or social signals, it fills gaps that the base model can't address.
The 24,000+ downloads suggest demand for exactly this kind of "Claude extension kit" — capabilities that complement the model's knowledge and reasoning with real-time external data and generative media.
View the skill on ClawHub: atxp