Keycloak
skycloak_create_export
Start a database export for a cluster. Asynchronous: poll skycloak_get_export until the status is 'completed' to obtain the download URL. Including credentials requires an encryption_password.
Remote skycloak/keycloak-mcp
Remote (network-hosted)
Other tools also called skycloak_create_export?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"format": {
"type": "string",
"description": "export format: sql or pgdump (case-insensitive)"
},
"cluster_id": {
"type": "string",
"description": "the cluster ID"
},
"encryption_password": {
"type": "string",
"description": "password to encrypt the archive (AES-256-CBC); required when include_credentials is true"
},
"include_credentials": {
"type": "boolean",
"description": "include the Keycloak credential tables; requires encryption_password"
}
}
}