add-project-member
Assign users to a project on Miro MCP by specifying their email and role, ensuring proper access and collaboration within the team and organization.
Instructions
Adds a member to a project (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Email ID of the user to add to the project | ||
orgId | Yes | The ID of the organization to which the project belongs | |
projectId | Yes | The ID of the project to which you want to add a user | |
role | Yes | Role to assign to the user | |
teamId | Yes | The ID of the team to which the project belongs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "Email ID of the user to add to the project",
"type": "string"
},
"orgId": {
"description": "The ID of the organization to which the project belongs",
"type": "string"
},
"projectId": {
"description": "The ID of the project to which you want to add a user",
"type": "string"
},
"role": {
"description": "Role to assign to the user",
"enum": [
"owner",
"editor",
"commenter",
"viewer"
],
"type": "string"
},
"teamId": {
"description": "The ID of the team to which the project belongs",
"type": "string"
}
},
"required": [
"orgId",
"teamId",
"projectId",
"email",
"role"
],
"type": "object"
}