Skip to main content
Glama

get-specific-board-member

Retrieve details of a specific member on a Miro board by providing board and member IDs to access individual contributor information.

Instructions

Retrieve details of a specific member on a Miro board

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardIdYesID of the board
memberIdYesID of the specific board member to retrieve

Implementation Reference

  • The handler function that implements the core logic of the 'get-specific-board-member' tool. It validates inputs, calls the MiroClient API to fetch the specific board member, and returns the result as JSON or an error response.
    fn: async ({ boardId, memberId }) => { try { if (!boardId) { return ServerResponse.error("Board ID is required"); } if (!memberId) { return ServerResponse.error("Member ID is required"); } const result = await MiroClient.getApi().getSpecificBoardMember(boardId, memberId); return ServerResponse.text(JSON.stringify(result, null, 2)); } catch (error) { process.stderr.write(`Error retrieving specific board member: ${error}\n`); return ServerResponse.error(error); } }
  • The schema definition for the tool, including name, description, and Zod-validated input parameters (boardId and memberId).
    const getSpecificBoardMemberTool: ToolSchema = { name: "get-specific-board-member", description: "Retrieve details of a specific member on a Miro board", args: { boardId: z.string().describe("ID of the board"), memberId: z.string().describe("ID of the specific board member to retrieve") },
  • src/index.ts:174-174 (registration)
    The line where the get-specific-board-member tool is registered with the ToolBootstrapper.
    .register(getSpecificBoardMemberTool)
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