Skip to content

Commit 83d7a4c

Browse files
emilioaccclaude
andcommitted
feat: include atxp-paas tools in atxp skill (#23)
* feat: include atxp-paas tools in atxp skill - Add PaaS section to SKILL.md with Workers, D1, and R2 tool documentation - Add paas.mcp.atxp.ai to MCP Servers table - Update description to include cloud deployment capabilities - Bump version to 1.3.0 (minor release for new feature) Fixes ATXP-1418 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * chore: update package-lock.json after version bump Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c5fb991 commit 83d7a4c

2 files changed

Lines changed: 50 additions & 3 deletions

File tree

package-lock.json

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

skills/atxp/SKILL.md

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: atxp
3-
description: 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`.
3+
description: Access ATXP paid API tools for web search, AI image generation, music creation, video generation, X/Twitter search, and cloud deployment (Workers, D1, R2). Requires authentication via `npx atxp login`.
44
---
55

66
# ATXP Tools
@@ -28,6 +28,31 @@ source ~/.atxp/config
2828
| `npx atxp video <prompt>` | AI video generation |
2929
| `npx atxp x <query>` | X/Twitter search |
3030

31+
## PaaS Tools
32+
33+
Deploy serverless apps with Cloudflare Workers, SQLite databases (D1), and object storage (R2).
34+
35+
### Workers (Serverless Functions)
36+
- `deploy_worker` - Deploy a Cloudflare Worker
37+
- `list_deployments` - List all deployed workers
38+
- `get_logs` - Retrieve worker logs
39+
- `delete_worker` - Delete a worker deployment
40+
41+
### D1 Database (SQLite)
42+
- `create_database` - Create a new D1 database
43+
- `list_databases` - List all databases
44+
- `query` - Execute SQL queries
45+
- `delete_database` - Delete a database
46+
47+
### R2 Storage (Object Storage)
48+
- `create_bucket` - Create a new R2 bucket
49+
- `list_buckets` - List all buckets
50+
- `upload_file` - Upload a file to a bucket
51+
- `get_file` - Retrieve a file from a bucket
52+
- `list_files` - List files in a bucket
53+
- `delete_file` - Delete a file
54+
- `delete_bucket` - Delete a bucket
55+
3156
## Usage
3257

3358
1. Verify `$ATXP_CONNECTION` is set
@@ -52,10 +77,11 @@ const result = await client.callTool({
5277

5378
## MCP Servers
5479

55-
| Server | Tool |
56-
|--------|------|
80+
| Server | Tools |
81+
|--------|-------|
5782
| `search.mcp.atxp.ai` | `search_search` |
5883
| `image.mcp.atxp.ai` | `image_create_image` |
5984
| `music.mcp.atxp.ai` | `music_create` |
6085
| `video.mcp.atxp.ai` | `create_video` |
6186
| `x-live-search.mcp.atxp.ai` | `x_live_search` |
87+
| `paas.mcp.atxp.ai` | `deploy_worker`, `list_deployments`, `get_logs`, `delete_worker`, `create_database`, `list_databases`, `query`, `delete_database`, `create_bucket`, `list_buckets`, `delete_bucket`, `upload_file`, `get_file`, `list_files`, `delete_file` |

0 commit comments

Comments
 (0)