import_from_url
Load and activate an AI persona from a shared URL using DollhouseMCP. Specify the URL to import and optionally overwrite existing personas for streamlined AI behavior management.
Instructions
Import a persona from a shared URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
overwrite | No | Overwrite if persona already exists (default: false) | |
url | Yes | The shared URL to import from |
Input Schema (JSON Schema)
{
"properties": {
"overwrite": {
"description": "Overwrite if persona already exists (default: false)",
"type": "boolean"
},
"url": {
"description": "The shared URL to import from",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}