atxp

TotalClaw 作者 totalclaw

访问 ATXP 付费 API 工具,用于网络搜索、AI 图像生成、音乐创作、视频生成和 X/Twitter 搜索。当用户需要实时网络搜索、AI 生成的媒体(图像、音乐、视频)或 X/Twitter 搜索时使用。需要通过“npx atxp login”进行身份验证。

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~syveraerp-sss
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~syveraerp-sss/file -o syveraerp-sss.md
## 概述(中文)

访问 ATXP 付费 API 工具,用于网络搜索、AI 图像生成、音乐创作、视频生成和 X/Twitter 搜索。当用户需要实时网络搜索、AI 生成的媒体(图像、音乐、视频)或 X/Twitter 搜索时使用。需要通过“npx atxp login”进行身份验证。

## 原文

# ATXP Tools

Access ATXP's paid API tools via CLI.

## Authentication

```bash
# Check if authenticated
echo $ATXP_CONNECTION

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

## Commands

| Command | Description |
|---------|-------------|
| `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 |

## Usage

1. Verify `$ATXP_CONNECTION` is set
2. Run the appropriate command
3. Parse and present results

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

## MCP Servers

| Server | Tool |
|--------|------|
| `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` |