export_persona
Export an AI persona to JSON format for easy management and sharing using the DollhouseMCP server. Simplify persona storage and integration with compatible AI 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"
}