Skip to main content
Glama

get-organization-member

Retrieve details of a specific organization member in Miro Enterprise using orgId and memberId to manage user information effectively.

Instructions

Retrieves information about a specific organization member (Enterprise only)

Input Schema

NameRequiredDescriptionDefault
memberIdYesid of the organization member
orgIdYesid of the organization

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "memberId": { "description": "id of the organization member", "type": "string" }, "orgId": { "description": "id of the organization", "type": "string" } }, "required": [ "orgId", "memberId" ], "type": "object" }

Implementation Reference

  • The handler function that executes the tool logic by calling the Miro API to retrieve information about a specific organization member.
    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); } }
  • Zod schemas defining the input parameters for the tool: orgId and memberId.
    args: { orgId: z.string().describe("id of the organization"), memberId: z.string().describe("id of the organization member") },
  • src/index.ts:198-198 (registration)
    Registers the get-organization-member tool in the ToolBootstrapper instance.
    .register(getOrganizationMemberTool)
  • src/index.ts:97-97 (registration)
    Imports the tool definition for registration.
    import getOrganizationMemberTool from './tools/getOrganizationMember.js';

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