Tálamo
    Tálamo MCPv1.3

    audit_​accounts

    Lists safe owned-account metadata without credentials or broker servers.

    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": {},
      "additionalProperties": false
    }

    Output schema

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

    Example

    json
    {
      "title": "Own audited accounts",
      "input": {},
      "output": {
        "source": "audited_account",
        "accounts": []
      }
    }

    Limits

    • At most 50 owned accounts.
    • Credentials, server addresses, and provider secrets are excluded.

    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.