atxp
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseATXP Tools
ATXP工具
Access ATXP's paid API tools via CLI.
通过CLI访问ATXP的付费API工具。
Authentication
身份验证
bash
undefinedbash
undefinedCheck if authenticated
检查是否已通过身份验证
echo $ATXP_CONNECTION
echo $ATXP_CONNECTION
If not set, login:
若未设置,请登录:
npx atxp login
source ~/.atxp/config
undefinednpx atxp login
source ~/.atxp/config
undefinedCommands
命令
| Command | Description |
|---|---|
| Real-time web search |
| AI image generation |
| AI music generation |
| AI video generation |
| X/Twitter search |
| Check your email inbox (FREE) |
| Read a specific message (FREE) |
| Send an email ($0.01/email) |
| 命令 | 描述 |
|---|---|
| 实时网页搜索 |
| AI图像生成 |
| AI音乐生成 |
| AI视频生成 |
| X/Twitter搜索 |
| 查看邮箱收件箱(免费) |
| 查看特定邮件内容(免费) |
| 发送邮件(每封0.01美元) |
邮件功能
Each ATXP user gets a unique email address:
{user_id}@atxp.email每位ATXP用户都拥有一个唯一的邮箱地址:
{user_id}@atxp.emailCheck Inbox
查看收件箱
bash
npx atxp email inboxReturns message metadata (from, subject, date, messageId). Use to get full message content.
email readbash
npx atxp email inbox返回邮件元数据(发件人、主题、日期、messageId)。使用命令查看完整邮件内容。
email readRead Message
查看邮件内容
bash
npx atxp email read <messageId>Retrieves the full content of a specific message including the body. Get the messageId from output.
email inboxbash
npx atxp email read <messageId>获取特定邮件的完整内容,包括正文。需从命令的输出中获取messageId。
email inboxSend Email
发送邮件
bash
npx atxp email send --to <email> --subject <subject> --body <body>Send Options:
- - Recipient email address (required)
--to - - Email subject line (required)
--subject - - Email body content (required)
--body
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 . See the skill for detailed usage.
paas.mcp.atxp.aiatxp-paas通过部署包含函数、数据库、对象存储、自定义域名和分析功能的无服务器应用。详细用法请查看技能。
paas.mcp.atxp.aiatxp-paasUsage
使用方法
- Verify is set
$ATXP_CONNECTION - Run the appropriate command
- Parse and present results
- 确认已设置
$ATXP_CONNECTION - 运行相应的命令
- 解析并展示结果
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服务器
| Server | Tools |
|---|---|
| |
| |
| |
| |
| |
| |
| PaaS tools (see |
| 服务器 | 工具 |
|---|---|
| |
| |
| |
| |
| |
| |
| PaaS工具(查看 |