Logo
ClawHub Skills Lib
HomeCategoriesUse CasesTrendingBlog
HomeCategoriesUse CasesTrendingBlog
ClawHub Skills Lib
ClawHub Skills Lib

Browse 20,000+ community-built AI agent skills for OpenClaw. Updated daily from clawhub.ai.

Explore

  • Home
  • Trending
  • Use Cases
  • Blog

Categories

  • Development
  • AI & Agents
  • Productivity
  • Communication
  • Data & Research
  • Business
  • Platforms
  • Lifestyle
  • Education
  • Design

Use Cases

  • Security Auditing
  • Workflow Automation
  • Finance & Fintech
  • MCP Integration
  • Crypto Trading
  • Web3 & DeFi
  • Data Analysis
  • Social Media
  • 中文平台技能
  • All Use Cases →
© 2026 ClawHub Skills Lib. All rights reserved.Built with Next.js · Supabase · Prisma
Home/Blog/ATXP Skill: Real-Time Web Search, AI Images, Music, Video, and X/Twitter — One CLI
skill-spotlightimage-genatxpclawhubopenclawweb-searchai-mediamcp

ATXP Skill: Real-Time Web Search, AI Images, Music, Video, and X/Twitter — One CLI

March 9, 2026·5 min read

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:

CommandCapability
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_CONNECTION

Once 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 ServerTool Name
search.mcp.atxp.aisearch_search
image.mcp.atxp.aiimage_create_image
music.mcp.atxp.aimusic_create
video.mcp.atxp.aicreate_video
x-live-search.mcp.atxp.aix_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 atxp

Use 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

  1. Real-time search fills the freshness gap — For anything that's changed in the past 6-12 months, atxp search is more reliable than asking Claude directly. Use it as a complement to Claude's knowledge, not a replacement.

  2. 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.

  3. Store ATXP_CONNECTION in your shell profile — The source ~/.atxp/config step is needed each session unless you add it to .bashrc / .zshrc.

  4. 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.

  5. 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_CONNECTION must be set — Commands fail silently or with auth errors if the credential isn't in the environment. Verify with echo $ATXP_CONNECTION before 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

← Back to Blog