reload_elements
Reload specific elements (personas, skills, templates, etc.) from the filesystem to update configurations in the DollhouseMCP server for dynamic AI persona management.
Instructions
Reload elements of a specific type from the filesystem
Input Schema
Name | Required | Description | Default |
---|---|---|---|
type | Yes | The element type to reload |
Input Schema (JSON Schema)
{
"properties": {
"type": {
"description": "The element type to reload",
"enum": [
"personas",
"skills",
"templates",
"agents",
"memories",
"ensembles"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}