get_events
Retrieve and filter events from the adventure log by type, keyword, or limit, aiding in Dungeons & Dragons campaign tracking and session management.
Instructions
Get events from the adventure log.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
event_type | No | Filter by event type | |
limit | No | Maximum number of events to return | |
search | No | Search events by title/description |
Input Schema (JSON Schema)
{
"properties": {
"event_type": {
"anyOf": [
{
"enum": [
"combat",
"roleplay",
"exploration",
"quest",
"character",
"world",
"session"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by event type",
"title": "Event Type"
},
"limit": {
"anyOf": [
{
"minimum": 1,
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Maximum number of events to return",
"title": "Limit"
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Search events by title/description",
"title": "Search"
}
},
"type": "object"
}