start_combat
Initiate a combat encounter in Dungeons & Dragons campaigns by specifying participants and their initiative order using the D&D MCP Server tool.
Instructions
Start a combat encounter.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
participants | Yes | Combat participants with initiative order |
Input Schema (JSON Schema)
{
"properties": {
"participants": {
"description": "Combat participants with initiative order",
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Participants",
"type": "array"
}
},
"required": [
"participants"
],
"type": "object"
}