delete_team
Remove a team from Umami Analytics by specifying its unique identifier to manage team access and organization structure.
Instructions
Delete a team
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| teamId | Yes | Team UUID to delete |
Implementation Reference
- src/tools/teams.ts:63-73 (handler)The definition and handler implementation for the delete_team MCP tool.
server.tool( "delete_team", "Delete a team", { teamId: z.string().describe("Team UUID to delete"), }, async ({ teamId }) => { await client.call("DELETE", `/api/teams/${teamId}`); return { content: [{ type: "text", text: `Team ${teamId} deleted successfully.` }] }; } );