Tálamo MCPv1.3
audit_summary
Devuelve equity, drawdown, win rate y profit factor seguros de una cuenta propia.
Auditoría
Solo lectura
Versión del contrato 1.0.0
Permisos y seguridad
- Procedencia
- audited_account
- Requiere confirmación
- No
- openWorld
- false
Esquema de entrada
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
}Esquema de salida
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": {}
}Ejemplo
json
{
"title": "Account health",
"input": {
"account_id": "00000000-0000-4000-8000-000000000004"
},
"output": {
"source": "audited_account",
"account": {},
"equity": null,
"statistics": null
}
}Límites
- Only the latest safe summary for one owned account.
- No credentials or execution access.
Errores estables
| Code | Description |
|---|---|
UNAUTHORIZED | The OAuth token is missing, expired, revoked, or invalid for this resource. |
VALIDATION_ERROR | The arguments do not match the published input schema. |
TOOL_ERROR | The operation could not be completed without exposing internal details. |
NOT_FOUND | The account is not owned by the authenticated user. |