ATXP Tools
Access ATXP's paid API tools via CLI.
Authentication
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
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 |
相关技能
- A
agent-browser
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
- A
analytics-tracking
When the user wants to set up, improve, or audit analytics tracking and measurement. Also use when the user mentions "set up tracking," "GA4," "Google Analytics," "conversion tracking," "event tracking," "UTM parameters," "tag manager," "GTM," "analytics implementation," or "tracking plan." For A/B test measurement, see ab-test-setup.
- B
better-auth-best-practices
Skill for integrating Better Auth - the comprehensive TypeScript authentication framework.
- B
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
- C
cache-components
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.