Skip to main content
Glama
mikusnuz

umami-mcp

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
NameRequiredDescriptionDefault
teamIdYesTeam UUID

Implementation Reference

  • 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) }] };
      }
    );

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