cldkctl_registry_member_add
Add a user to a specified registry by providing registry ID and user ID using the MCP cldkctl Server tool.
Instructions
Call the cldkctl_registry_member_add endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
registry_id | Yes | Registry ID | |
user_id | Yes | User ID to add |
Input Schema (JSON Schema)
{
"properties": {
"registry_id": {
"description": "Registry ID",
"type": "string"
},
"user_id": {
"description": "User ID to add",
"type": "string"
}
},
"required": [
"registry_id",
"user_id"
],
"type": "object"
}