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
| Name | Required | Description | Default |
|---|---|---|---|
| boardId | Yes | ID of the board | |
| memberId | Yes | ID 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)