Skip to main content
Glama
mikusnuz

umami-mcp

update_team

Modify a team's name in Umami Analytics by providing the team ID and new name.

Instructions

Update a team's name

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamIdYesTeam UUID
nameYesNew team name

Implementation Reference

  • The update_team tool handler implementation in src/tools/teams.ts.
    server.tool(
      "update_team",
      "Update a team's name",
      {
        teamId: z.string().describe("Team UUID"),
        name: z.string().describe("New team name"),
      },
      async ({ teamId, name }) => {
        const data = await client.call("POST", `/api/teams/${teamId}`, { name });
        return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikusnuz/umami-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server