Skip to main content
Glama

get-specific-item

Retrieve detailed information about a specific item on a Miro board by providing its board ID and item ID using the Miro MCP server interface.

Instructions

Retrieve information about a specific item on a Miro board

Input Schema

NameRequiredDescriptionDefault
boardIdYesUnique identifier (ID) of the board that contains the item
itemIdYesUnique identifier (ID) of the item that you want to retrieve

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "boardId": { "description": "Unique identifier (ID) of the board that contains the item", "type": "string" }, "itemId": { "description": "Unique identifier (ID) of the item that you want to retrieve", "type": "string" } }, "required": [ "boardId", "itemId" ], "type": "object" }

Implementation Reference

  • The handler function executes the tool logic: validates boardId and itemId, fetches the item data via MiroClient API, stringifies and returns it, or handles errors.
    fn: async ({ boardId, itemId }) => { try { if (!boardId) { return ServerResponse.error("Board ID is required"); } if (!itemId) { return ServerResponse.error("Item ID is required"); } const itemData = await MiroClient.getApi().getSpecificItem(boardId, itemId); return ServerResponse.text(JSON.stringify(itemData, null, 2)); } catch (error) { return ServerResponse.error(error); } }
  • Input schema using Zod for validating boardId and itemId parameters.
    args: { boardId: z.string().describe("Unique identifier (ID) of the board that contains the item"), itemId: z.string().describe("Unique identifier (ID) of the item that you want to retrieve") },
  • src/index.ts:118-118 (registration)
    Registration of the get-specific-item tool with the ToolBootstrapper instance.
    .register(getSpecificItemTool)
  • src/index.ts:17-17 (registration)
    Import statement for the get-specific-item tool definition.
    import getSpecificItemTool from './tools/getSpecificItem.js';

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