get-specific-board-member
Retrieve detailed information about a specific member on a Miro board by providing the board ID and member ID.
Instructions
Retrieve details of a specific member on a Miro board
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| boardId | Yes | ID of the board | |
| memberId | Yes | ID of the specific board member to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "ID of the board",
"type": "string"
},
"memberId": {
"description": "ID of the specific board member to retrieve",
"type": "string"
}
},
"required": [
"boardId",
"memberId"
],
"type": "object"
}
Implementation Reference
- The handler function that implements the core logic of the 'get-specific-board-member' tool. It performs input validation, invokes the Miro API via MiroClient to fetch the specific board member, formats the response as JSON, and handles errors appropriately.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); } }
- Zod-based input schema defining the required parameters: boardId (string) and memberId (string) for the tool.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 getSpecificBoardMemberTool is registered with the ToolBootstrapper in the main server setup..register(getSpecificBoardMemberTool)