@railway/cli 5.38.0 → 5.39.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.
- package/README.md +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ Configure Railway agent support for AI coding tools:
|
|
|
61
61
|
railway setup agent -y
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
-
This installs Railway skills and configures the Railway MCP server for detected tools such as Claude Code, Cursor, Codex, OpenCode, GitHub Copilot, and Factory Droid.
|
|
64
|
+
This installs Railway skills and configures the remote Railway MCP server (`mcp.railway.com` via `railway mcp proxy`, authenticated with your CLI login) for detected tools such as Claude Code, Cursor, Codex, OpenCode, GitHub Copilot, and Factory Droid.
|
|
65
65
|
|
|
66
66
|
Use the focused commands when you only need one part of the setup:
|
|
67
67
|
|
|
@@ -70,6 +70,14 @@ railway mcp install --agent cursor
|
|
|
70
70
|
railway skills --agent claude-code
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
Opt into the local GraphQL-backed MCP server instead:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
railway setup agent -y --local
|
|
77
|
+
# or
|
|
78
|
+
railway mcp install --local --agent cursor
|
|
79
|
+
```
|
|
80
|
+
|
|
73
81
|
## Contributing
|
|
74
82
|
|
|
75
83
|
See [CONTRIBUTING.md](https://github.com/railwayapp/cli/blob/master/CONTRIBUTING.md) for information on setting up this repository locally.
|