Tálamo
    Tálamo MCPv1.3

    audit_​summary

    Returns safe equity, drawdown, win rate, and profit factor for one owned account.

    Audit
    Read only
    Contract version 1.0.0

    Permissions and security

    Data source
    audited_account
    Requires confirmation
    No
    openWorld
    false

    Input schema

    json
    {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "account_id": {
          "type": "string",
          "format": "uuid",
          "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$"
        }
      },
      "required": [
        "account_id"
      ],
      "additionalProperties": false
    }

    Output schema

    json
    {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "source": {
          "type": "string",
          "const": "audited_account"
        },
        "account": {},
        "equity": {
          "anyOf": [
            {},
            {
              "type": "null"
            }
          ]
        },
        "statistics": {
          "anyOf": [
            {},
            {
              "type": "null"
            }
          ]
        }
      },
      "required": [
        "source",
        "account",
        "equity",
        "statistics"
      ],
      "additionalProperties": {}
    }

    Example

    json
    {
      "title": "Account health",
      "input": {
        "account_id": "00000000-0000-4000-8000-000000000004"
      },
      "output": {
        "source": "audited_account",
        "account": {},
        "equity": null,
        "statistics": null
      }
    }

    Limits

    • Only the latest safe summary for one owned account.
    • No credentials or execution access.

    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.
    NOT_FOUNDThe account is not owned by the authenticated user.