atxp-call 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -14
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -4,8 +4,16 @@ A command-line tool for calling tools on ATXP MCP servers.
4
4
 
5
5
  ## Installation
6
6
 
7
+ Run directly with npx (no installation required):
8
+
9
+ ```bash
10
+ npx atxp-call <server> <tool> <arguments_json>
11
+ ```
12
+
13
+ Or install globally:
14
+
7
15
  ```bash
8
- npm install
16
+ npm install -g atxp-call
9
17
  ```
10
18
 
11
19
  ## Configuration
@@ -27,13 +35,7 @@ You can find your connection string at https://accounts.atxp.ai
27
35
  ## Usage
28
36
 
29
37
  ```bash
30
- ./atxp-call.js <server> <tool> <arguments_json> [--x402] [--no-parse] [--verbose]
31
- ```
32
-
33
- Or if installed globally:
34
-
35
- ```bash
36
- atxp-call <server> <tool> <arguments_json> [--x402] [--no-parse] [--verbose]
38
+ npx atxp-call <server> <tool> <arguments_json> [--x402] [--no-parse] [--verbose]
37
39
  ```
38
40
 
39
41
  ### Required Arguments
@@ -55,37 +57,37 @@ atxp-call <server> <tool> <arguments_json> [--x402] [--no-parse] [--verbose]
55
57
  Search X (formerly Twitter) for posts:
56
58
 
57
59
  ```bash
58
- ./atxp-call.js x-live-search.mcp.atxp.ai x_live_search '{"query": "What are the latest updates from Space X?"}'
60
+ npx atxp-call x-live-search.mcp.atxp.ai x_live_search '{"query": "What are the latest updates from Space X?"}'
59
61
  ```
60
62
 
61
63
  Perform web search:
62
64
 
63
65
  ```bash
64
- ./atxp-call.js search.mcp.atxp.ai search '{"query": "latest AI developments"}'
66
+ npx atxp-call search.mcp.atxp.ai search '{"query": "latest AI developments"}'
65
67
  ```
66
68
 
67
69
  Crawl a webpage:
68
70
 
69
71
  ```bash
70
- ./atxp-call.js crawl.mcp.atxp.ai crawl '{"url": "https://example.com"}'
72
+ npx atxp-call crawl.mcp.atxp.ai crawl '{"url": "https://example.com"}'
71
73
  ```
72
74
 
73
75
  Generate an image:
74
76
 
75
77
  ```bash
76
- ./atxp-call.js image.mcp.atxp.ai generate_image '{"prompt": "A sunset over mountains", "sync": true}'
78
+ npx atxp-call image.mcp.atxp.ai generate_image '{"prompt": "A sunset over mountains", "sync": true}'
77
79
  ```
78
80
 
79
81
  Execute code in a sandbox:
80
82
 
81
83
  ```bash
82
- ./atxp-call.js code.mcp.atxp.ai execute_code '{"language": "python", "code": "print(\"Hello, World!\")"}'
84
+ npx atxp-call code.mcp.atxp.ai execute_code '{"language": "python", "code": "print(\"Hello, World!\")"}'
83
85
  ```
84
86
 
85
87
  Research a topic:
86
88
 
87
89
  ```bash
88
- ./atxp-call.js research.mcp.atxp.ai research '{"query": "quantum computing applications", "depth": "quick"}'
90
+ npx atxp-call research.mcp.atxp.ai research '{"query": "quantum computing applications", "depth": "quick"}'
89
91
  ```
90
92
 
91
93
  See available MCP servers at: https://docs.atxp.ai/client/mcp_servers
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atxp-call",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A command-line tool for calling tools on ATXP MCP servers",
5
5
  "license": "MIT",
6
6
  "author": "DNR",
@@ -19,8 +19,8 @@
19
19
  "test": "echo \"Error: no test specified\" && exit 1"
20
20
  },
21
21
  "dependencies": {
22
- "@atxp/client": "^0.7.4",
23
- "@atxp/x402": "^0.7.4",
22
+ "@atxp/client": "^0.10.5",
23
+ "@atxp/x402": "^0.10.5",
24
24
  "dotenv": "^16.4.5"
25
25
  }
26
26
  }