Tálamo MCPv1.3
journal_list
Lists journal entries and Copilot scenarios owned by the authenticated user.
Journal
Read only
Contract version 1.0.0
Permissions and security
- Data source
- journal
- Requires confirmation
- No
- openWorld
- false
Input schema
json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"planned",
"open",
"closed",
"cancelled"
]
},
"instrument": {
"type": "string",
"maxLength": 24
},
"limit": {
"default": 20,
"type": "integer",
"minimum": 1,
"maximum": 50
}
},
"required": [
"limit"
],
"additionalProperties": false
}Output schema
json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"source": {
"type": "string",
"const": "journal"
},
"entries": {
"type": "array",
"items": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
}
},
"count": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
}
},
"required": [
"source",
"entries",
"count"
],
"additionalProperties": {}
}Example
json
{
"title": "Latest planned scenarios",
"input": {
"status": "planned",
"limit": 10
},
"output": {
"source": "journal",
"entries": [],
"count": 0
}
}Limits
- At most 50 rows per request.
- Only entries owned by the authenticated user are returned.
Stable errors
| 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. |