create_team
Create a new team in Umami Analytics to organize users and manage permissions for website analytics, stats, and events.
Instructions
Create a new team
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Team name |
Implementation Reference
- src/tools/teams.ts:26-36 (handler)The create_team tool registration and handler logic.
server.tool( "create_team", "Create a new team", { name: z.string().describe("Team name"), }, async ({ name }) => { const data = await client.call("POST", "/api/teams", { name }); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] }; } );