Skip to main content
Glama

get-board-classification

Retrieve board classification details for a specific board using orgId, teamId, and boardId in Miro MCP server, designed for Enterprise use cases.

Instructions

Retrieves board classification for a board (Enterprise only)

Input Schema

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

Implementation Reference

  • The asynchronous handler function that implements the core logic of the 'get-board-classification' tool. It fetches the board classification from the Miro API using the provided orgId, teamId, and boardId, formats the response as JSON, and handles any errors gracefully.
    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); } }
  • The schema definition for the tool, including the name, description, and Zod-based input argument validation schema.
    const getBoardClassificationTool: ToolSchema = { name: "get-board-classification", description: "Retrieves board classification for a board (Enterprise only)", 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)
    The line where the getBoardClassificationTool is registered with the ToolBootstrapper in the main server index file.
    .register(getBoardClassificationTool)

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