get_element_details
Retrieve comprehensive details about specific elements such as personas, skills, templates, or agents within the DollhouseMCP server to streamline AI persona and resource management.
Instructions
Get detailed information about a specific element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The element name to get details for | |
type | Yes | The element type |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The element name to get details for",
"type": "string"
},
"type": {
"description": "The element type",
"enum": [
"personas",
"skills",
"templates",
"agents",
"memories",
"ensembles"
],
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
}