mold_setConfig
Configure API endpoint, authentication keys, and signature algorithm for ABLESTACK MOLD MCP Server to enable secure cloud infrastructure management operations.
Instructions
endpoint, apiKey, secret 및 서명 알고리즘(sha1|sha256)을 설정합니다. 기본은 sha256. persist=true면 디스크에 저장.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
algo | No | ||
apiKey | No | ||
endpoint | No | ||
persist | No | ||
secret | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"algo": {
"enum": [
"sha1",
"sha256"
],
"type": "string"
},
"apiKey": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"persist": {
"type": "boolean"
},
"secret": {
"type": "string"
}
},
"type": "object"
}