Marketplace atxp
Access ATXP paid API tools for web search, AI image generation, music creation, video generation, and X/Twitter search. Use when users need real-time web search, AI-generated media (images, music, video), or X/Twitter search. Requires authentication via `npx atxp login`.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/atxp-dev/atxp" ~/.claude/skills/aiskillstore-marketplace-atxp && rm -rf "$T"
manifest:
skills/atxp-dev/atxp/SKILL.mdsource content
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 |
|---|---|
| Real-time web search |
| AI image generation |
| AI music generation |
| AI video generation |
| X/Twitter search |
PaaS Tools
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.
Usage
- Verify
is set$ATXP_CONNECTION - Run the appropriate command
- 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 | Tools |
|---|---|
| |
| |
| |
| |
| |
| PaaS tools (see skill) |