Skip to main content
Glama
mikusnuz

umami-mcp

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

Implementation Reference

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

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