Skip to main content
Glama

resend_confirmation

Resend the anti-spam confirmation email to unconfirmed accounts stuck in pending status when the original email was lost or filtered.

Instructions

Resend the operator anti-spam confirmation email. Use this if the account is stuck in 'pending_operator_confirmation' status because the original confirmation email was lost or filtered. Rate limited to 1 request per 5 minutes. Only works for unconfirmed accounts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/index.ts:183-192 (registration)
    Tool registration for resend_confirmation - registers the tool with the MCP server, includes its name, description, empty schema (no parameters required), and the handler function that executes the tool logic
    // Tool 7: resend_confirmation
    server.tool(
      "resend_confirmation",
      "Resend the operator anti-spam confirmation email. Use this if the account is stuck in 'pending_operator_confirmation' status because the original confirmation email was lost or filtered. Rate limited to 1 request per 5 minutes. Only works for unconfirmed accounts.",
      {},
      async () => {
        const data = await apiCall("POST", "/v1/account/resend-confirmation");
        return { content: [{ type: "text" as const, text: JSON.stringify(data, null, 2) }] };
      }
    );
  • Handler function for resend_confirmation - executes a POST API call to /v1/account/resend-confirmation endpoint and returns the response as formatted JSON
    async () => {
      const data = await apiCall("POST", "/v1/account/resend-confirmation");
      return { content: [{ type: "text" as const, text: JSON.stringify(data, null, 2) }] };
    }
  • Schema definition for resend_confirmation - empty object {} indicating this tool takes no input parameters
    {},

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/multimail-dev/multi-mail'

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