cldkctl_auth
Authenticate and authorize cldkctl CLI functionality via the MCP cldkctl Server by providing a valid token and optional staging environment flag.
Instructions
Call the cldkctl_auth endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force_staging | No | Force using staging environment (default: false) | |
token | Yes | Your cldkctl token (starts with 'cldkctl_') |
Input Schema (JSON Schema)
{
"properties": {
"force_staging": {
"description": "Force using staging environment (default: false)",
"type": "boolean"
},
"token": {
"description": "Your cldkctl token (starts with 'cldkctl_')",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}