From 99072d94061636679403c8a3c9283e63dd9fb093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Cunha?= Date: Sat, 4 Jul 2026 16:55:35 +0100 Subject: [PATCH] docs(infra): correct savearth-mcp IP to 192.168.0.212 and document public tunnel endpoint --- .aurelio/mcp/README.md | 4 ++-- .aurelio/mcp/savearth-mcp/README.md | 8 ++++---- .../memory/infrastructure/mcp-servers.md | 2 +- experiments/hermes-launch/skills/client.py | 2 +- .../.aurelio/memory/infrastructure/mcp-servers.md | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.aurelio/mcp/README.md b/.aurelio/mcp/README.md index 5a139721..dc92207d 100644 --- a/.aurelio/mcp/README.md +++ b/.aurelio/mcp/README.md @@ -173,13 +173,13 @@ Unified MCP server for telemetry, device management, and infrastructure queries. ### Configuration -**Endpoint:** `http://192.168.0.201:8080/sse` (CT 201) +**Endpoint:** `http://192.168.0.212:8080/sse` (CT 201) ```json { "mcpServers": { "savearth": { - "url": "http://192.168.0.201:8080/sse", + "url": "http://192.168.0.212:8080/sse", "transport": "sse" } } diff --git a/.aurelio/mcp/savearth-mcp/README.md b/.aurelio/mcp/savearth-mcp/README.md index 7195578a..3ce37511 100644 --- a/.aurelio/mcp/savearth-mcp/README.md +++ b/.aurelio/mcp/savearth-mcp/README.md @@ -9,9 +9,9 @@ Single MCP server consolidating device management, telemetry analysis, and infra | **Host** | Proxmox CT 201 | | **Name** | `savearth-mcp` | | **Status** | ✅ Running | -| **IP** | 192.168.0.201 | +| **IP** | 192.168.0.212 (CT 201) | | **Port** | 8080 (SSE transport) | -| **Endpoint** | `http://192.168.0.201:8080/sse` | +| **Endpoint** | `https://savearth-mcp.portugalfuturista.org/sse` (public) / `http://192.168.0.212:8080/sse` (LAN) | | **Setup Script** | [../setup.sh](../setup.sh) | ## Architecture @@ -90,7 +90,7 @@ The server is already running on CT 201: { "mcpServers": { "savearth": { - "url": "http://192.168.0.201:8080/sse", + "url": "http://192.168.0.212:8080/sse", "transport": "sse" } } @@ -327,7 +327,7 @@ AI: ssh ssh.portugalfuturista.org "pct exec 201 -- systemctl status savearth-mcp" # Direct health check -curl http://192.168.0.201:8080/health +curl http://192.168.0.212:8080/health ``` ### Restart diff --git a/.aurelio/projects/smart-device-firmware/memory/infrastructure/mcp-servers.md b/.aurelio/projects/smart-device-firmware/memory/infrastructure/mcp-servers.md index 310aba30..f5e226dd 100644 --- a/.aurelio/projects/smart-device-firmware/memory/infrastructure/mcp-servers.md +++ b/.aurelio/projects/smart-device-firmware/memory/infrastructure/mcp-servers.md @@ -17,7 +17,7 @@ This is the primary MCP server for the `smart-device-firmware` realm. It is alre | Transport | URL | Status | |-----------|-----|--------| | Remote SSE | `https://savearth-mcp.portugalfuturista.org/sse` | Current temporary route | -| Internal | `http://192.168.0.201:8080/sse` (CT 201) | Fallback on LAN | +| Internal | `http://192.168.0.212:8080/sse` (CT 201) | Fallback on LAN | > **Future routing:** `savearth-mcp` will eventually be served through the **savearth.io Cloudflare account**. When that happens, update the `savearth-mcp` URL in `.aurelio/mcp_config.json` (workspace) and in `replica-omnisciente/.aurelio/mcp_config.json` (central brain). diff --git a/experiments/hermes-launch/skills/client.py b/experiments/hermes-launch/skills/client.py index 2891a2cf..3d902824 100644 --- a/experiments/hermes-launch/skills/client.py +++ b/experiments/hermes-launch/skills/client.py @@ -12,7 +12,7 @@ DEFAULT_ENDPOINTS = { # Public gabinete gateway (CT 206) "gabinete": os.getenv("MCP_GABINETE_URL", "https://mcp.portugalfuturista.org/sse"), # Internal Proxmox services — configure via env or SSH tunnel - "savearth": os.getenv("MCP_SAVEARTH_URL", "http://192.168.0.201:8080/sse"), + "savearth": os.getenv("MCP_SAVEARTH_URL", "http://192.168.0.212:8080/sse"), "sourcing": os.getenv("MCP_ELECTRICAL_SOURCING_URL", "http://192.168.0.125:8081/sse"), "eda": os.getenv("MCP_ELECTRICAL_EDA_URL", "http://192.168.0.125:8082/sse"), "knowledge": os.getenv("MCP_KNOWLEDGE_URL", "http://192.168.0.125:8083/sse"), diff --git a/realms/smart-device-firmware/.aurelio/memory/infrastructure/mcp-servers.md b/realms/smart-device-firmware/.aurelio/memory/infrastructure/mcp-servers.md index 310aba30..f5e226dd 100644 --- a/realms/smart-device-firmware/.aurelio/memory/infrastructure/mcp-servers.md +++ b/realms/smart-device-firmware/.aurelio/memory/infrastructure/mcp-servers.md @@ -17,7 +17,7 @@ This is the primary MCP server for the `smart-device-firmware` realm. It is alre | Transport | URL | Status | |-----------|-----|--------| | Remote SSE | `https://savearth-mcp.portugalfuturista.org/sse` | Current temporary route | -| Internal | `http://192.168.0.201:8080/sse` (CT 201) | Fallback on LAN | +| Internal | `http://192.168.0.212:8080/sse` (CT 201) | Fallback on LAN | > **Future routing:** `savearth-mcp` will eventually be served through the **savearth.io Cloudflare account**. When that happens, update the `savearth-mcp` URL in `.aurelio/mcp_config.json` (workspace) and in `replica-omnisciente/.aurelio/mcp_config.json` (central brain).