delete_miro_board
Remove a Miro board permanently from the Learning Hour MCP server. Requires board ID and confirmation to proceed with deletion.
Instructions
Delete a Miro board (use with caution!)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| boardId | Yes | ID of the Miro board to delete | |
| confirm | Yes | Must be true to confirm deletion |
Implementation Reference
- src/index.ts:216-233 (registration)Registration of the 'delete_miro_board' tool including its name, description, and input schema definition in the list of available tools.{ name: "delete_miro_board", description: "Delete a Miro board (use with caution!)", inputSchema: { type: "object", properties: { boardId: { type: "string", description: "ID of the Miro board to delete", }, confirm: { type: "boolean", description: "Must be true to confirm deletion", }, }, required: ["boardId", "confirm"], }, },
- src/index.ts:219-232 (schema)Input schema definition for the 'delete_miro_board' tool, specifying boardId (string, required) and confirm (boolean, required).inputSchema: { type: "object", properties: { boardId: { type: "string", description: "ID of the Miro board to delete", }, confirm: { type: "boolean", description: "Must be true to confirm deletion", }, }, required: ["boardId", "confirm"], },