Tálamo MCPv1.3
signals_list
Lists published laboratory signals; it cannot publish, edit, or approve.
Signals
Read only
Contract version 1.0.0
Permissions and security
- Data source
- laboratory
- Requires confirmation
- No
- openWorld
- false
Input schema
json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"instrument": {
"type": "string",
"maxLength": 24
},
"timeframe": {
"type": "string",
"maxLength": 8
},
"result": {
"type": "string",
"maxLength": 30
},
"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": "laboratory"
},
"signals": {
"type": "array",
"items": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
}
},
"count": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
}
},
"required": [
"source",
"signals",
"count"
],
"additionalProperties": {}
}Example
json
{
"title": "Pending gold signals",
"input": {
"instrument": "XAUUSD",
"timeframe": "H1",
"result": "pending",
"limit": 10
},
"output": {
"source": "laboratory",
"signals": [],
"count": 0
}
}Limits
- Published signals only.
- At most 50 signals per request.
- No signal publishing, editing, or approval capability.
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. |