Skip to main content
Glama
mikusnuz

umami-mcp

transfer_website

Transfer ownership of a website to another user in Umami Analytics by specifying website and target user IDs.

Instructions

Transfer website ownership to another user

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
websiteIdYesWebsite UUID to transfer
userIdYesTarget user UUID to transfer ownership to

Implementation Reference

  • The registration and handler implementation for the "transfer_website" tool.
    server.tool(
      "transfer_website",
      "Transfer website ownership to another user",
      {
        websiteId: z.string().describe("Website UUID to transfer"),
        userId: z.string().describe("Target user UUID to transfer ownership to"),
      },
      async ({ websiteId, userId }) => {
        const data = await client.call("POST", `/api/websites/${websiteId}/transfer`, { userId });
        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