Skip to main content
Glama

get-all-tags

Retrieve all tags from a Miro board to organize and categorize content. Specify board ID and optional pagination parameters.

Instructions

Retrieve all tags on a Miro board

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardIdYesUnique identifier (ID) of the board for which you want to retrieve all tags
limitNoMaximum number of tags to return (default: 50)
offsetNoOffset for pagination (default: 0)

Implementation Reference

  • Handler function that retrieves all tags from a specified Miro board, supporting pagination with limit and offset parameters, using the MiroClient API.
    fn: async ({ boardId, limit, offset }) => { try { if (!boardId) { return ServerResponse.error("Board ID is required"); } const query: Record<string, any> = {}; if (limit !== undefined) { query.limit = limit; } if (offset !== undefined) { query.offset = offset; } const result = await MiroClient.getApi().getTagsFromBoard(boardId, query); return ServerResponse.text(JSON.stringify(result, null, 2)); } catch (error) { return ServerResponse.error(error); } }
  • Tool schema including name, description, and Zod-validated input parameters for boardId (required), limit, and offset.
    const getAllTagsTool: ToolSchema = { name: "get-all-tags", description: "Retrieve all tags on a Miro board", args: { boardId: z.string().describe("Unique identifier (ID) of the board for which you want to retrieve all tags"), limit: z.number().optional().nullish().describe("Maximum number of tags to return (default: 50)"), offset: z.number().optional().nullish().describe("Offset for pagination (default: 0)") },
  • src/index.ts:167-167 (registration)
    Registration of the getAllTagsTool into the ToolBootstrapper instance.
    .register(getAllTagsTool)
Install Server

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