Tool details
| Field | Value |
|---|---|
| Name | veryfront__get_agent_run_events |
| Group | Conversations |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"conversation_id": {
"type": "string",
"format": "uuid",
"description": "Conversation identifier that scopes the request."
},
"run_id": {
"type": "string",
"minLength": 1,
"description": "Run identifier that scopes the request."
},
"after_event_id": {
"type": "integer",
"minimum": 0,
"description": "Provide the after event id."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 500,
"description": "Maximum number of results to return."
},
"format": {
"type": "string",
"const": "typed",
"description": "Deprecated and ignored. Only \"typed\" is accepted; it names the shape this tool already returns."
}
},
"additionalProperties": false,
"description": "Input schema for the get_agent_run_events tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
output-schema.json
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"event_id": {
"type": "integer",
"minimum": 0,
"description": "Monotonic event identifier within the run."
},
"event_type": {
"type": "string",
"minLength": 1,
"description": "Persisted event type for this run event."
},
"payload": {
"description": "Event payload emitted by the run."
},
"created_at": {
"type": [
"string",
"null"
],
"description": "Stored row timestamp, null when the row carries none."
},
"is_error": {
"type": "boolean",
"description": "Whether the event reports an error."
},
"run_id": {
"type": "string",
"minLength": 1,
"description": "Run identifier associated with the record."
},
"event_class": {
"type": "string",
"enum": [
"fact",
"delta"
],
"description": "The event class associated with this record."
},
"span_id": {
"type": "string",
"minLength": 1,
"description": "The span id associated with this record."
},
"parent_span_id": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "The parent span id associated with this record."
},
{
"type": "null",
"description": "The parent span id returned by the tool."
}
],
"description": "The parent span id associated with this record."
},
"turn_id": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "The turn id associated with this record."
},
{
"type": "null",
"description": "The turn id returned by the tool."
}
],
"description": "The turn id associated with this record."
},
"origin_event_type": {
"type": "string",
"minLength": 1,
"description": "The origin event type associated with this record."
},
"origin_custom_name": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "The origin custom name associated with this record."
},
{
"type": "null",
"description": "The origin custom name returned by the tool."
}
],
"description": "The origin custom name associated with this record."
},
"unrecoverable_fields": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"description": "One unrecoverable field item associated with this record."
},
"description": "List of unrecoverable fields associated with this record."
}
},
"required": [
"event_id",
"event_type",
"payload",
"created_at",
"is_error",
"run_id",
"event_class",
"span_id",
"parent_span_id",
"turn_id",
"origin_event_type",
"origin_custom_name",
"unrecoverable_fields"
],
"additionalProperties": false,
"description": "One persisted agent run event, with its span envelope."
},
"description": "Event records for the requested page."
},
"page_info": {
"type": "object",
"properties": {
"self": {
"type": [
"string",
"null"
],
"description": "Cursor representing the current page."
},
"first": {
"type": "null",
"description": "Always null because these MCP pagination flows do not expose a first-page cursor."
},
"next": {
"type": [
"string",
"null"
],
"description": "Cursor for the next page, or null when there are no more results."
},
"prev": {
"type": [
"string",
"null"
],
"description": "Cursor for the previous page, or null when unavailable."
}
},
"required": [
"self",
"first",
"next",
"prev"
],
"additionalProperties": false,
"description": "Pagination cursors for the agent run event list."
}
},
"required": [
"data",
"page_info"
],
"additionalProperties": false,
"description": "Paginated agent run event list response.",
"$schema": "http://json-schema.org/draft-07/schema#"
}