ssh_list_profiles
Lists available SSH server profiles without displaying passwords, enabling users to view and select stored connections for remote administration.
Instructions
Lista los perfiles de servidores SSH disponibles (sin mostrar passwords)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:103-108 (handler)Implementation of the handler for 'ssh_list_profiles' which calls 'listProfiles()' helper.
private handleListProfiles(): CallToolResult { const profiles = listProfiles(); return { content: [{ type: "text", text: JSON.stringify(profiles, null, 2) }], }; } - src/tools.ts:4-11 (schema)Tool registration definition for 'ssh_list_profiles'.
{ name: "ssh_list_profiles", description: "Lista los perfiles de servidores SSH disponibles (sin mostrar passwords)", inputSchema: { type: "object", properties: {}, }, },