Skip to main content
Glama

remove-project-member

Remove a member from a Miro project to manage team access and permissions. This tool requires organization, team, project, and member IDs for Enterprise accounts.

Instructions

Removes a member from a project (Enterprise only)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orgIdYesThe ID of the organization to which the project belongs
teamIdYesThe ID of the team to which the project belongs
projectIdYesThe ID of the project from which you want to remove a member
memberIdYesThe ID of the member that you want to remove from a project

Implementation Reference

  • The asynchronous handler function that executes the tool logic: calls MiroClient's enterpriseDeleteProjectMember API with orgId, teamId, projectId, memberId, formats the response, and handles errors.
    fn: async ({ orgId, teamId, projectId, memberId }) => { try { const response = await MiroClient.getApi().enterpriseDeleteProjectMember( orgId, teamId, projectId, memberId ); return ServerResponse.text(JSON.stringify(response.body, null, 2)); } catch (error) { process.stderr.write(`Error removing project member: ${error}\n`); return ServerResponse.error(error); } }
  • Zod schema defining the input arguments for the tool: orgId, teamId, projectId, memberId.
    args: { orgId: z.string().describe("The ID of the organization to which the project belongs"), teamId: z.string().describe("The ID of the team to which the project belongs"), projectId: z.string().describe("The ID of the project from which you want to remove a member"), memberId: z.string().describe("The ID of the member that you want to remove from a project") },
  • src/index.ts:201-201 (registration)
    Registers the removeProjectMemberTool with the ToolBootstrapper.
    .register(removeProjectMemberTool)
  • src/index.ts:100-100 (registration)
    Imports the tool definition for registration.
    import removeProjectMemberTool from './tools/removeProjectMember.js';
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