Skip to main content
Glama

get-group

Retrieve details about a specific group on a Miro board by providing the board ID and group ID. Access the necessary information for efficient board management.

Instructions

Retrieve information about a specific group on a Miro board

Input Schema

NameRequiredDescriptionDefault
boardIdYesID of the board that contains the group
groupIdYesID of the group that you want to retrieve

Input Schema (JSON Schema)

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

Implementation Reference

  • The asynchronous handler function that executes the "get-group" tool logic. It validates inputs, calls MiroClient.getApi().getGroupById(boardId, groupId), and returns the result as JSON or an error.
    fn: async ({ boardId, groupId }) => { try { if (!boardId) { return ServerResponse.error("Board ID is required"); } if (!groupId) { return ServerResponse.error("Group ID is required"); } const result = await MiroClient.getApi().getGroupById(boardId, groupId); return ServerResponse.text(JSON.stringify(result, null, 2)); } catch (error) { process.stderr.write(`Error retrieving group: ${error}\n`); return ServerResponse.error(error); } }
  • The ToolSchema definition for "get-group", including name, description, and input schema (args) validated with Zod.
    const getGroupTool: ToolSchema = { name: "get-group", description: "Retrieve information about a specific group on a Miro board", args: { boardId: z.string().describe("ID of the board that contains the group"), groupId: z.string().describe("ID of the group that you want to retrieve") },
  • src/index.ts:180-180 (registration)
    Registers the getGroupTool ("get-group") with the ToolBootstrapper instance.
    .register(getGroupTool)

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