get_location
Retrieve detailed location information for Dungeons & Dragons campaigns by providing the location name. Part of the D&D MCP Server for managing game elements like NPCs, quests, and encounters.
Instructions
Get location information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Location name |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Location name",
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}