Skip to main content
Glama

get-board-classification

Retrieve board classification data for enterprise Miro boards to organize and manage content effectively.

Instructions

Retrieves board classification for a board (Enterprise only)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orgIdYesid of the organization
teamIdYesid of the team
boardIdYesUnique identifier of the board that you want to retrieve

Implementation Reference

  • The asynchronous function implementing the core logic of the 'get-board-classification' tool. It calls the Miro API to fetch board classification and returns the response or handles errors.
    fn: async ({ orgId, teamId, boardId }) => { try { const response = await MiroClient.getApi().enterpriseDataclassificationBoardGet(orgId, teamId, boardId); return ServerResponse.text(JSON.stringify(response.body, null, 2)); } catch (error) { process.stderr.write(`Error retrieving board classification: ${error}\n`); return ServerResponse.error(error); } }
  • Zod schema defining the input arguments for the tool: orgId, teamId, and boardId.
    args: { orgId: z.string().describe("id of the organization"), teamId: z.string().describe("id of the team"), boardId: z.string().describe("Unique identifier of the board that you want to retrieve"), },
  • src/index.ts:190-190 (registration)
    Registers the getBoardClassificationTool with the ToolBootstrapper instance in the main server setup.
    .register(getBoardClassificationTool)

Other 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