doordash_verify
Complete DoorDash login by entering a 6-digit verification code to authenticate and access delivery services.
Instructions
Complete DoorDash login with a verification code.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | 6-digit verification code |
Implementation Reference
- src/tools/index.ts:120-135 (handler)The tool 'doordash_verify' is registered and implemented in src/tools/index.ts. It calls the 'verifyMfa' method of the 'login' API.
server.registerTool( "doordash_verify", { description: "Complete DoorDash login with a verification code.", inputSchema: { code: z.string().describe("6-digit verification code"), }, }, ({ code }) => wrap(async () => { const result = await api.login.verifyMfa(code); return result.status === "success" ? ok(result.message) : err(result.message); }), );