export_persona
Export a specific AI persona to a JSON file using DollhouseMCP, enabling easy integration and management of customizable AI behaviors for Claude and other assistants.
Instructions
Export a single persona to a JSON format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
persona | Yes | The persona name or filename to export |
Input Schema (JSON Schema)
{
"properties": {
"persona": {
"description": "The persona name or filename to export",
"type": "string"
}
},
"required": [
"persona"
],
"type": "object"
}