Image & Video GenerationDocumentedScanned

atxp

Access ATXP paid API tools for web search, AI image generation, music creation, video generation, and X/Twitter searc.

Share:

Installation

npx clawhub@latest install atxp

View the full skill documentation and source below.

Documentation

ATXP Tools

Access ATXP's paid API tools via CLI.

Authentication

# Check if authenticated
echo $ATXP_CONNECTION

# If not set, login:
npx atxp login
source ~/.atxp/config

Commands

CommandDescription
npx atxp search Real-time web search
npx atxp image AI image generation
npx atxp music AI music generation
npx atxp video AI video generation
npx atxp x X/Twitter search

Usage

  • Verify $ATXP_CONNECTION is set

  • Run the appropriate command

  • Parse and present results
  • Programmatic Access

    import { atxpClient, ATXPAccount } from '@atxp/client';
    
    const client = await atxpClient({
      mcpServer: '',
      account: new ATXPAccount(process.env.ATXP_CONNECTION),
    });
    
    const result = await client.callTool({
      name: 'search_search',
      arguments: { query: 'your query' },
    });

    MCP Servers

    ServerTool
    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