Skip to main content
Glama

user_delete

Remove a user account from the Pickaxe platform using their email address to manage access and maintain user lists across studio environments.

Instructions

Delete a user by email.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
studioNoStudio name to use. Available: STAGING, MAIN, DEV, PRODUCTION. Default: PRODUCTION
emailYesThe user's email address to delete

Implementation Reference

  • The handler function for the 'user_delete' tool. It performs a DELETE request to the Pickaxe API to delete the user by email.
    case "user_delete": { const result = await pickaxeRequest( `/studio/user/${encodeURIComponent(args.email as string)}`, "DELETE", undefined, studio ); return JSON.stringify(result, null, 2); }
  • src/index.ts:361-375 (registration)
    Registration of the 'user_delete' tool in the tools array, including its metadata and input schema.
    { name: "user_delete", description: "Delete a user by email.", inputSchema: { type: "object", properties: { studio: studioParam, email: { type: "string", description: "The user's email address to delete", }, }, required: ["email"], }, },
  • Input schema definition for the 'user_delete' tool, specifying parameters like studio and required email.
    inputSchema: { type: "object", properties: { studio: studioParam, email: { type: "string", description: "The user's email address to delete", }, }, required: ["email"], },

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/aplaceforallmystuff/mcp-pickaxe'

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