@phidiassj/aiyoperps-mcp-bridge 0.8.4 → 0.8.5

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 CHANGED
@@ -14,6 +14,8 @@ Custom endpoint:
14
14
  npx -y @phidiassj/aiyoperps-mcp-bridge --url http://127.0.0.1:5078/mcp
15
15
  ```
16
16
 
17
+ Use `--url` whenever your MCP endpoint is not the local default.
18
+
17
19
  Or via environment variable:
18
20
 
19
21
  ```bash
@@ -195,8 +195,9 @@ function writeFrame(jsonText) {
195
195
  }
196
196
 
197
197
  function parseOptions(args) {
198
+ const defaultUrl = env.AIYOPERPS_MCP_URL || 'http://127.0.0.1:5078/mcp';
198
199
  const options = {
199
- url: env.AIYOPERPS_MCP_URL || 'http://127.0.0.1:5078/mcp',
200
+ url: defaultUrl,
200
201
  healthCheck: false,
201
202
  startupPing: false,
202
203
  quiet: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phidiassj/aiyoperps-mcp-bridge",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "description": "Stdio MCP bridge for the AiyoPerps local HTTP MCP endpoint.",
5
5
  "license": "MIT",
6
6
  "bin": {