get_active_elements
Retrieve real-time data on active elements (personas, skills, templates, agents, memories, ensembles) in DollhouseMCP for dynamic AI persona management and context control.
Instructions
Get information about currently active elements of a specific type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
type | Yes | The element type to check |
Input Schema (JSON Schema)
{
"properties": {
"type": {
"description": "The element type to check",
"enum": [
"personas",
"skills",
"templates",
"agents",
"memories",
"ensembles"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}