atxp

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

ATXP Tools

ATXP工具

Access ATXP's paid API tools via CLI.
通过CLI访问ATXP的付费API工具。

Authentication

身份验证

bash
undefined
bash
undefined

Check if authenticated

检查是否已通过身份验证

echo $ATXP_CONNECTION
echo $ATXP_CONNECTION

If not set, login:

若未设置,请登录:

npx atxp login source ~/.atxp/config
undefined
npx atxp login source ~/.atxp/config
undefined

Commands

命令

CommandDescription
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
npx atxp email inbox
Check your email inbox (FREE)
npx atxp email read <messageId>
Read a specific message (FREE)
npx atxp email send <options>
Send an email ($0.01/email)
命令描述
npx atxp search <query>
实时网页搜索
npx atxp image <prompt>
AI图像生成
npx atxp music <prompt>
AI音乐生成
npx atxp video <prompt>
AI视频生成
npx atxp x <query>
X/Twitter搜索
npx atxp email inbox
查看邮箱收件箱(免费)
npx atxp email read <messageId>
查看特定邮件内容(免费)
npx atxp email send <options>
发送邮件(每封0.01美元)

Email

邮件功能

Each ATXP user gets a unique email address:
{user_id}@atxp.email
每位ATXP用户都拥有一个唯一的邮箱地址:
{user_id}@atxp.email

Check Inbox

查看收件箱

bash
npx atxp email inbox
Returns message metadata (from, subject, date, messageId). Use
email read
to get full message content.
bash
npx atxp email inbox
返回邮件元数据(发件人、主题、日期、messageId)。使用
email read
命令查看完整邮件内容。

Read Message

查看邮件内容

bash
npx atxp email read <messageId>
Retrieves the full content of a specific message including the body. Get the messageId from
email inbox
output.
bash
npx atxp email read <messageId>
获取特定邮件的完整内容,包括正文。需从
email inbox
命令的输出中获取messageId。

Send Email

发送邮件

bash
npx atxp email send --to <email> --subject <subject> --body <body>
Send Options:
  • --to
    - Recipient email address (required)
  • --subject
    - Email subject line (required)
  • --body
    - Email body content (required)
Example:
bash
npx atxp email send --to user@example.com --subject "Hello" --body "Hi there!"
bash
npx atxp email send --to <email> --subject <subject> --body <body>
发送选项:
  • --to
    - 收件人邮箱地址(必填)
  • --subject
    - 邮件主题(必填)
  • --body
    - 邮件正文内容(必填)
示例:
bash
npx atxp email send --to user@example.com --subject "Hello" --body "Hi there!"

PaaS Tools

PaaS工具

Deploy serverless applications with functions, databases, object storage, custom domains, and analytics via
paas.mcp.atxp.ai
. See the
atxp-paas
skill for detailed usage.
通过
paas.mcp.atxp.ai
部署包含函数、数据库、对象存储、自定义域名和分析功能的无服务器应用。详细用法请查看
atxp-paas
技能。

Usage

使用方法

  1. Verify
    $ATXP_CONNECTION
    is set
  2. Run the appropriate command
  3. Parse and present results
  1. 确认
    $ATXP_CONNECTION
    已设置
  2. 运行相应的命令
  3. 解析并展示结果

Programmatic Access

程序化访问

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 query' },
});
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 query' },
});

MCP Servers

MCP服务器

ServerTools
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
email.mcp.atxp.ai
email_check_inbox
,
email_get_message
,
email_send_email
paas.mcp.atxp.ai
PaaS tools (see
atxp-paas
skill)
服务器工具
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
email.mcp.atxp.ai
email_check_inbox
,
email_get_message
,
email_send_email
paas.mcp.atxp.ai
PaaS工具(查看
atxp-paas
技能)