Tálamo
    Tálamo MCPv1.3

    academy_​search

    Searches published lessons and returns short excerpts, never full lesson bodies.

    Academy
    Read only
    Contract version 1.0.0

    Permissions and security

    Data source
    academy
    Requires confirmation
    No
    openWorld
    false

    Input schema

    json
    {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "query": {
          "type": "string",
          "minLength": 2,
          "maxLength": 120
        },
        "locale": {
          "default": "es",
          "type": "string",
          "enum": [
            "es",
            "en",
            "pt"
          ]
        },
        "limit": {
          "default": 5,
          "type": "integer",
          "minimum": 1,
          "maximum": 10
        }
      },
      "required": [
        "query",
        "locale",
        "limit"
      ],
      "additionalProperties": false
    }

    Output schema

    json
    {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "source": {
          "type": "string",
          "const": "academy"
        },
        "lessons": {
          "type": "array",
          "items": {
            "type": "object",
            "propertyNames": {
              "type": "string"
            },
            "additionalProperties": {}
          }
        }
      },
      "required": [
        "source",
        "lessons"
      ],
      "additionalProperties": {}
    }

    Example

    json
    {
      "title": "Find risk lessons",
      "input": {
        "query": "gestión de riesgo",
        "locale": "es",
        "limit": 5
      },
      "output": {
        "source": "academy",
        "lessons": []
      }
    }

    Limits

    • At most 10 published lessons.
    • Lesson content is truncated to a short excerpt.

    Stable errors

    CodeDescription
    UNAUTHORIZEDThe OAuth token is missing, expired, revoked, or invalid for this resource.
    VALIDATION_ERRORThe arguments do not match the published input schema.
    TOOL_ERRORThe operation could not be completed without exposing internal details.