Files
emilioacc 11ac95dd38 Fix tool names for MCP servers (#15)
- search.mcp.atxp.ai: search -> search_search
- image.mcp.atxp.ai: generate_image -> image_create_image
- music.mcp.atxp.ai: generate_music -> music_create
- video.mcp.atxp.ai: generate_video -> create_video

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 11:51:19 -05:00
..
2026-01-26 11:51:19 -05:00
2026-01-26 16:40:20 +00:00

ATXP CLI

Command line tool for ATXP tools and development.

Installation

# Run directly with npx (recommended)
npx atxp

# Or install globally
npm install -g atxp

Quick Start

# Log in to ATXP
npx atxp login

# Search the web
npx atxp search "latest AI news"

# Generate an image
npx atxp image "sunset over mountains"

# Search X/Twitter
npx atxp x "trending topics"

Commands

Authentication

npx atxp login [options]

Log in to ATXP by saving your connection string.

Get your connection string from: https://accounts.atxp.ai

Options:

  • --force - Update connection string even if already set

After login, source the config to use in your terminal:

source ~/.atxp/config

Tools

npx atxp search <query>

Search the web using ATXP.

npx atxp search "latest AI news"
npx atxp search "weather in San Francisco"

npx atxp image <prompt>

Generate an image from a text prompt.

npx atxp image "sunset over mountains"
npx atxp image "a cute robot playing guitar"

npx atxp music <prompt>

Generate music from a text prompt.

npx atxp music "relaxing piano"
npx atxp music "upbeat electronic dance"

npx atxp video <prompt>

Generate a video from a text prompt.

npx atxp video "ocean waves crashing"
npx atxp video "timelapse of clouds"

npx atxp x <query>

Search X/Twitter for live content.

npx atxp x "trending topics"
npx atxp x "AI announcements"

Development

npx atxp dev demo [options]

Runs the interactive ATXP demo application.

Options:

  • --verbose, -v - Show detailed logs
  • --refresh - Force refresh demo from GitHub
  • --port, -p - Specify port number (default: 8017)
  • --dir, -d - Specify demo directory (default: ~/.cache/atxp/demo)

Examples:

npx atxp dev demo
npx atxp dev demo --verbose
npx atxp dev demo --port 3000

npx atxp dev create <app-name> [options]

Creates a new ATXP project with the specified name.

Options:

  • --framework, -f - Specify framework template (default: express)
  • --git - Force git initialization
  • --no-git - Skip git initialization

Examples:

npx atxp dev create my-app
npx atxp dev create my-app --framework express
npx atxp dev create my-app --no-git

Other

npx atxp help

Displays help information.

About ATXP

ATXP is a platform for building web agents with OAuth and payment capabilities. This CLI tool helps you:

  • Access ATXP tools (search, image generation, music, video, X search)
  • Explore ATXP features through interactive demos
  • Bootstrap new projects with ATXP integration

Learn More

License

MIT