From 79f70682e2dfc39fe2c6728ea9292079e15ed69f Mon Sep 17 00:00:00 2001 From: kappa Date: Sun, 10 Aug 2025 18:01:18 +0900 Subject: [PATCH] Remove specific server information from documentation - Replace actual server names (jp1, kr1, lambda) with generic examples - Use remote1, remote2 as example remote server names - Keep documentation generic for public distribution --- CLAUDE.md | 5 ++--- README.md | 10 +++++----- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index c4cffed..6a04892 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -56,9 +56,8 @@ The `.claude/settings.local.json` file enables all configured MCP servers for Cl ### Remote Server Support The server automatically works with all configured Incus remotes: -- **jp1**: Primary remote server (current) -- **kr1**: Secondary remote server -- **lambda**: Additional remote server +- **remote1**: Example primary remote server +- **remote2**: Example secondary remote server - **local**: Local Incus daemon - **images**: LinuxContainers.org image server - **docker**: Docker Hub OCI registry diff --git a/README.md b/README.md index ef4e5c4..c113558 100644 --- a/README.md +++ b/README.md @@ -196,11 +196,11 @@ incus_start_instance: {"name": "webserver"} ### Remote Operations ```bash -incus_list_instances: {"remote": "jp1"} -# Lists instances only from the jp1 remote server +incus_list_instances: {"remote": "remote1"} +# Lists instances only from the remote1 server -incus_show_instance: {"name": "myapp", "remote": "kr1"} -# Shows details for 'myapp' instance on kr1 server +incus_show_instance: {"name": "myapp", "remote": "remote2"} +# Shows details for 'myapp' instance on remote2 server ``` ### Command Execution @@ -208,7 +208,7 @@ incus_show_instance: {"name": "myapp", "remote": "kr1"} incus_exec_command: { "instance": "webserver", "command": "apt update && apt install -y nginx", - "remote": "jp1" + "remote": "remote1" } ```