Skip to main content

talonic_list_schemas

List all saved schemas with their definitions. Returns schema IDs (both UUID and SCH-XXXXXXXX short format), names, and field definitions.

The talonic://schemas resource exposes the same data to clients that browse resources separately (Claude Desktop and Cowork render these in the UI).

Example

No input parameters required.

Tool response
{
  "schemas": [
    {
      "id": "sch_7a1b2c3d-4e5f-6a7b-8c9d-0e1f2a3b4c5d",
      "short_id": "SCH-A1B2C3D4",
      "name": "Standard Invoice",
      "description": "Extracts vendor, line items, totals, and payment terms.",
      "version": 3,
      "field_count": 6,
      "definition": {
        "type": "object",
        "properties": {
          "vendor_name": { "type": "string" },
          "invoice_number": { "type": "string" },
          "total_amount": { "type": "number" },
          "due_date": { "type": "string", "format": "date" },
          "currency": { "type": "string" },
          "line_items": { "type": "array" }
        },
        "required": ["vendor_name", "total_amount"]
      }
    },
    {
      "id": "sch_e5f6a7b8-c9d0-1e2f-3a4b-5c6d7e8f9a0b",
      "short_id": "SCH-E5F6A7B8",
      "name": "Certificate of Insurance",
      "description": "Extracts insured party, coverage types, limits, and expiry.",
      "version": 1,
      "field_count": 8,
      "definition": { "type": "object", "properties": { "..." : {} } }
    }
  ]
}