cldkctl_org_member_add
Add a user to an organization by assigning a role and project ID using the MCP cldkctl Server endpoint for streamlined team management.
Instructions
Call the cldkctl_org_member_add endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | Project ID to assign | |
role_id | Yes | Role ID to assign | |
user_id | Yes | ID of the user to add |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "Project ID to assign",
"type": "string"
},
"role_id": {
"description": "Role ID to assign",
"type": "string"
},
"user_id": {
"description": "ID of the user to add",
"type": "string"
}
},
"required": [
"user_id",
"role_id",
"project_id"
],
"type": "object"
}