get_npc
Retrieve detailed information about a specific NPC in a Dungeons & Dragons campaign using the provided NPC name. Ideal for campaign management and role-playing assistance.
Instructions
Get NPC information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | NPC name |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "NPC name",
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}