get-specific-board
Retrieve detailed information about a specific Miro board using its unique ID via the Miro MCP server. Ideal for accessing board-specific data directly.
Instructions
Retrieve information about a specific Miro board by its ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| boardId | Yes | Unique identifier (ID) of the board that you want to retrieve |
Implementation Reference
- src/tools/getSpecificBoard.ts:12-26 (handler)The main handler function that executes the tool logic: validates boardId, calls MiroClient.getApi().getSpecificBoard(boardId), stringifies the board data as JSON response, or returns error.fn: async ({ boardId }) => { try { if (!boardId) { return ServerResponse.error("Board ID is required"); } const boardData = await MiroClient.getApi().getSpecificBoard(boardId); return ServerResponse.text(JSON.stringify(boardData, null, 2)); } catch (error) { process.stderr.write(`Error fetching specific Miro board: ${error}\n`); return ServerResponse.error(error); } }
- src/tools/getSpecificBoard.ts:6-11 (schema)Tool schema defining the tool name, description, and input parameters with Zod validation for boardId.const getSpecificBoardTool: ToolSchema = { name: "get-specific-board", description: "Retrieve information about a specific Miro board by its ID", args: { boardId: z.string().describe("Unique identifier (ID) of the board that you want to retrieve") },
- src/index.ts:116-116 (registration)Registers the get-specific-board tool with the ToolBootstrapper instance..register(getSpecificBoardTool)