You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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>
Copy file name to clipboardExpand all lines: skills/atxp/SKILL.md
+29-3Lines changed: 29 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
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`.
4
4
---
5
5
6
6
# ATXP Tools
@@ -28,6 +28,31 @@ source ~/.atxp/config
28
28
|`npx atxp video <prompt>`| AI video generation |
29
29
|`npx atxp x <query>`| X/Twitter search |
30
30
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
+
31
56
## Usage
32
57
33
58
1. Verify `$ATXP_CONNECTION` is set
@@ -52,10 +77,11 @@ const result = await client.callTool({
0 commit comments