Skip to main content
Glama

user_invite

Send email invitations to new users and optionally grant product access through the MCP Pickaxe Server.

Instructions

Send email invitations to new users with optional product access.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
studioNoStudio name to use. Available: STAGING, MAIN, DEV, PRODUCTION. Default: PRODUCTION
emailsYesArray of email addresses to invite
productIdsNoArray of product IDs to grant access to

Implementation Reference

  • Handler for the user_invite tool. Makes a POST request to the Pickaxe /studio/user/invite endpoint with emails and productIds parameters.
    case "user_invite": { const result = await pickaxeRequest("/studio/user/invite", "POST", { emails: args.emails, productIds: args.productIds, }, studio); return JSON.stringify(result, null, 2); }
  • Input schema for the user_invite tool defining studio (optional), emails (required array of strings), and productIds (optional array of strings).
    inputSchema: { type: "object", properties: { studio: studioParam, emails: { type: "array", items: { type: "string" }, description: "Array of email addresses to invite", }, productIds: { type: "array", items: { type: "string" }, description: "Array of product IDs to grant access to", }, }, required: ["emails"], },
  • src/index.ts:376-396 (registration)
    Registration of the user_invite tool in the tools array, including name, description, and full input schema.
    { name: "user_invite", description: "Send email invitations to new users with optional product access.", inputSchema: { type: "object", properties: { studio: studioParam, emails: { type: "array", items: { type: "string" }, description: "Array of email addresses to invite", }, productIds: { type: "array", items: { type: "string" }, description: "Array of product IDs to grant access to", }, }, required: ["emails"], }, },

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