list_quests
Efficiently organize and view Dungeons & Dragons quests by filtering based on status—active, completed, failed, or on hold—using this tool.
Instructions
List quests, optionally filtered by status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
status | No | Filter by status |
Input Schema (JSON Schema)
{
"properties": {
"status": {
"anyOf": [
{
"enum": [
"active",
"completed",
"failed",
"on_hold"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by status",
"title": "Status"
}
},
"type": "object"
}