Skip to main content

Check Configuration

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READleonardo-ai.check_configuration
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: leonardo-ai-2026.07.12.1
  • Descriptor hash: 0d8deaea6e65be13eaccb8b32f12663951f2b425980230e7124789d9e41efaab

Use this local read-only tool before Leonardo work to check whether the Portal gate, request-scoped provider credential, webhook auth, and job store are ready. It never returns credential values and does not contact Leonardo.Ai.

Request Body

{
"jsonrpc": "2.0",
"id": "leonardo-ai-check-configuration-example",
"method": "tools/call",
"params": {
"name": "leonardo-ai.check_configuration",
"arguments": {}
}
}

Arguments Schema

{
"type": "object",
"properties": {},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the navigation request succeeded."
},
"data": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe navigation data when the request succeeds."
},
"error": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe structured error when ok is false."
},
"manifest": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Complete ToolManifest when explicitly requested."
}
},
"description": "Local Leonardo navigation result. ok=false is a semantic tool failure and must be handled as an error by the caller.",
"additionalProperties": true
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "leonardo-ai-check-configuration-example",
"method": "tools/call",
"params": {
"name": "leonardo-ai.check_configuration",
"arguments": {}
}
}'

Example Responses

{
"ok": true,
"message": "Tool leonardo-ai.check_configuration executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}