You're viewing a demo portfolio

Join the waitlist
PRSM

get_ssh_command

Active

Tool of cloud.redu/mcp

declared in 2.0.0

Returns the SSH command to connect to an instance via the redu.cloud TCP proxy. For a DEPLOYMENT VM (created by deploy_app/deploy_compose) pass keypair_name — read it from get_deployment — so the command uses `-i ~/.ssh/<keypair_name>` and authenticates with the RIGHT key instead of your default identity (without it, SSH to a deploy VM usually fails). The tool also best-effort looks up the keypair from the deployment if you omit it. Example: ssh -i ~/.ssh/redu-deploy -o IdentitiesOnly=yes -p 22011 ubuntu@myinstance-abc12345.redu.cloud

Parameters schema

{
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "required": [
    "instance_id"
  ],
  "properties": {
    "instance_id": {
      "type": "string",
      "minLength": 1,
      "description": "ID of the instance to get the SSH command for."
    },
    "keypair_name": {
      "type": "string",
      "description": "The SSH keypair the instance was created with (read it from get_deployment for a deploy VM). When given, the command uses `-i ~/.ssh/<keypair_name>` so it authenticates with the right key."
    }
  },
  "additionalProperties": false
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.50.

Parent server

cloud.redu/mcp

1/7 registries
View full server →
get_ssh_command — cloud.redu/mcp — PRSM MCP