Skip to main content
Glama

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
NameRequiredDescriptionDefault
boardIdYesID of the Miro board to delete
confirmYesMust 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"],
      },
    },
  • 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"],
    },

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/SDiamante13/learning-hour-mcp'

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