import_persona
Transfer a behavioral persona into the DollhouseMCP server by importing from a file path or JSON string, with optional overwrite functionality. Enables dynamic AI persona management and integration.
Instructions
Import a persona from a file path or JSON string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
overwrite | No | Overwrite if persona already exists (default: false) | |
source | Yes | File path to a .md or .json file, or a JSON string of the persona |
Input Schema (JSON Schema)
{
"properties": {
"overwrite": {
"description": "Overwrite if persona already exists (default: false)",
"type": "boolean"
},
"source": {
"description": "File path to a .md or .json file, or a JSON string of the persona",
"type": "string"
}
},
"required": [
"source"
],
"type": "object"
}