Letta · Schema

MCPToolHealth

Health status for an MCP tool's schema.

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
status string Schema health status: STRICT_COMPLIANT, NON_STRICT_ONLY, or INVALID
reasons array List of reasons for the health status
View JSON Schema on GitHub

JSON Schema

letta-mcptoolhealth-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MCPToolHealth",
  "title": "MCPToolHealth",
  "properties": {
    "status": {
      "type": "string",
      "title": "Status",
      "description": "Schema health status: STRICT_COMPLIANT, NON_STRICT_ONLY, or INVALID"
    },
    "reasons": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "title": "Reasons",
      "description": "List of reasons for the health status"
    }
  },
  "type": "object",
  "required": [
    "status"
  ],
  "description": "Health status for an MCP tool's schema."
}