Skip to main content
Glama

get-organization-member

Retrieve organization member details in Miro by providing organization and member IDs to access specific user information.

Instructions

Retrieves information about a specific organization member (Enterprise only)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orgIdYesid of the organization
memberIdYesid of the organization member

Implementation Reference

  • The handler function that implements the core logic of the 'get-organization-member' tool. It fetches the organization member details using the MiroClient API.
    fn: async ({ orgId, memberId }) => { try { const response = await MiroClient.getApi().enterpriseGetOrganizationMember(orgId, memberId); return ServerResponse.text(JSON.stringify(response.body, null, 2)); } catch (error) { process.stderr.write(`Error retrieving organization member: ${error}\n`); return ServerResponse.error(error); } }
  • The ToolSchema definition including the tool name, description, and Zod input schema for orgId and memberId parameters.
    const getOrganizationMemberTool: ToolSchema = { name: "get-organization-member", description: "Retrieves information about a specific organization member (Enterprise only)", args: { orgId: z.string().describe("id of the organization"), memberId: z.string().describe("id of the organization member") },
  • src/index.ts:198-198 (registration)
    The registration of the get-organization-member tool in the ToolBootstrapper chain in the main index file.
    .register(getOrganizationMemberTool)
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