get_team
Retrieve team details from Umami Analytics by providing a team UUID to access specific team information and management data.
Instructions
Get details of a specific team
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| teamId | Yes | Team UUID |
Implementation Reference
- src/tools/teams.ts:38-48 (handler)The handler for the "get_team" tool, which fetches team details from the API.
server.tool( "get_team", "Get details of a specific team", { teamId: z.string().describe("Team UUID"), }, async ({ teamId }) => { const data = await client.call("GET", `/api/teams/${teamId}`); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] }; } );