atxp
Original:🇺🇸 English
Translated
Access ATXP paid API tools for web search, AI image generation, music creation, video generation, X/Twitter search, and email. Use when users need real-time web search, AI-generated media (images, music, video), X/Twitter search, or to send/receive emails. Requires authentication via `npx atxp login`.
38installs
Sourceatxp-dev/cli
Added on
NPX Install
npx skill4agent add atxp-dev/cli atxpTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →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/configCommands
| 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) |
Each ATXP user gets a unique email address:
{user_id}@atxp.emailCheck Inbox
bash
npx atxp email inboxReturns message metadata (from, subject, date, messageId). Use to get full message content.
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 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!"PaaS Tools
Deploy serverless applications with functions, databases, object storage, custom domains, and analytics via . See the skill for detailed usage.
paas.mcp.atxp.aiatxp-paasUsage
- Verify is set
$ATXP_CONNECTION - Run the appropriate command
- 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 | Tools |
|---|---|
| |
| |
| |
| |
| |
| |
| PaaS tools (see |