remove-project-member
Remove a specific member from a project within an organization or team using the 'remove-project-member' tool. Requires org ID, team ID, project ID, and member ID for precise identification.
Instructions
Removes a member from a project (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memberId | Yes | The ID of the member that you want to remove from a project | |
orgId | Yes | The ID of the organization to which the project belongs | |
projectId | Yes | The ID of the project from which you want to remove a member | |
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": {
"memberId": {
"description": "The ID of the member that you want to remove from a project",
"type": "string"
},
"orgId": {
"description": "The ID of the organization to which the project belongs",
"type": "string"
},
"projectId": {
"description": "The ID of the project from which you want to remove a member",
"type": "string"
},
"teamId": {
"description": "The ID of the team to which the project belongs",
"type": "string"
}
},
"required": [
"orgId",
"teamId",
"projectId",
"memberId"
],
"type": "object"
}