Skip to main content
Glama

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
NameRequiredDescriptionDefault
boardIdYesUnique identifier (ID) of the board that you want to retrieve

Implementation Reference

  • 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); } }
  • 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)

Other Tools

Related Tools

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/k-jarzyna/mcp-miro'

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