squads_update
Modify internal squad details by specifying the squad UUID and updating its name to maintain accurate team organization within the VPN panel.
Instructions
Update an internal squad
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Squad UUID | |
| name | No | New squad name |
Implementation Reference
- src/tools/squads.ts:43-58 (registration)The 'squads_update' tool is registered in this block, defining its schema and handler logic.
server.tool( 'squads_update', 'Update an internal squad', { uuid: z.string().describe('Squad UUID'), name: z.string().optional().describe('New squad name'), }, async (params) => { try { const result = await client.updateInternalSquad(params); return toolResult(result); } catch (e) { return toolError(e); } }, );