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
| Name | Required | Description | Default |
|---|---|---|---|
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) }] }; } ); - src/index.ts:188-191 (handler)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) }] }; } - src/index.ts:187-187 (schema)Schema definition for resend_confirmation - empty object {} indicating this tool takes no input parameters
{},