rayrun 0.3.0 → 0.5.0

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 +9 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,9 +1,13 @@
1
1
  # Rayrun CLI
2
2
 
3
- Connect supported MCP clients, execute OAuth-bound tools, or manage workspace services, policy,
4
- approvals, and activity through the public API.
3
+ Build and deploy complete MCP servers, connect supported MCP clients, execute OAuth-bound tools, or
4
+ manage workspace services, policy, approvals, and activity through the public API.
5
5
 
6
6
  ```sh
7
+ npx --yes rayrun@latest init my-mcp
8
+ cd my-mcp
9
+ npx --yes rayrun@latest deploy --wait
10
+
7
11
  npx rayrun setup https://copy-the-endpoint-from-rayrun.example/mcp
8
12
  npx rayrun tools describe linear.create_issue
9
13
  npx rayrun call linear.create_issue '{"title":"Fix the release"}'
@@ -13,5 +17,6 @@ npx rayrun connections list
13
17
  This package is the short command for [`@rayrun/cli`](https://www.npmjs.com/package/@rayrun/cli).
14
18
  Both names run the same version of the same CLI.
15
19
 
16
- See the [CLI documentation](https://ray.run/docs/cli) for setup, OAuth execution and resume, rollback,
17
- service connections, tool search, policy inspection, approvals, and activity.
20
+ See the [CLI documentation](https://ray.run/docs/cli) for source deployment, build logs, release
21
+ rollback, setup, OAuth execution and resume, service connections, tool search, policy inspection,
22
+ approvals, and activity.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rayrun",
3
- "version": "0.3.0",
4
- "description": "Set up MCP clients, execute tools, and manage Rayrun from the command line",
3
+ "version": "0.5.0",
4
+ "description": "Build and deploy MCP servers, connect clients, execute tools, and manage Rayrun",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -22,7 +22,7 @@
22
22
  "access": "public"
23
23
  },
24
24
  "dependencies": {
25
- "@rayrun/cli": "0.3.0"
25
+ "@rayrun/cli": "0.5.0"
26
26
  },
27
27
  "engines": {
28
28
  "node": ">=20"