squads_create
Create a new internal squad within the Remnawave VPN panel to organize users and manage team access.
Instructions
Create a new internal squad
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Squad name |
Implementation Reference
- src/tools/squads.ts:27-41 (handler)The 'squads_create' tool is registered using 'server.tool', with the handler implementation invoking 'client.createInternalSquad'.
server.tool( 'squads_create', 'Create a new internal squad', { name: z.string().describe('Squad name'), }, async (params) => { try { const result = await client.createInternalSquad(params); return toolResult(result); } catch (e) { return toolError(e); } }, );