Access ATXP's paid API tools via CLI. ``` echo $ATXP_CONNECTION
# Check if authenticated echo $ATXP_CONNECTION # If not set, login: npx atxp login source ~/.atxp/config
npx atxp search <query>npx atxp image <prompt>npx atxp music <prompt>npx atxp video <prompt>npx atxp x <query>npx atxp email inboxnpx atxp email read <messageId>npx atxp email send <options>{user_id}@atxp.emailnpx atxp email inboxemail read to get full message content.npx atxp email read <messageId>email inbox output.npx atxp email send --to <email> --subject <subject> --body <body>--to - Recipient email address (required)--subject - Email subject line (required)--body - Email body content (required)npx atxp email send --to user@example.com --subject "Hello" --body "Hi there!"paas.mcp.atxp.ai. See the atxp-paas skill for detailed usage.$ATXP_CONNECTION is setimport { 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 query' }, });
search.mcp.atxp.aisearch_searchimage.mcp.atxp.aiimage_create_imagemusic.mcp.atxp.aimusic_createvideo.mcp.atxp.aicreate_videox-live-search.mcp.atxp.aix_live_searchemail.mcp.atxp.aiemail_check_inbox, email_get_message, email_send_emailpaas.mcp.atxp.aiatxp-paas skill)