get_persona_details
Retrieve comprehensive details about a specific AI persona hosted on DollhouseMCP, enabling users to understand and manage persona behaviors effectively.
Instructions
Get detailed information about a specific persona
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| persona | Yes | The persona name or filename to get details for |
Implementation Reference
- src/types/mcp.ts:21-23 (schema)Zod schema for input arguments of the get_persona_details tool. Defines 'identifier' parameter.export const GetPersonaDetailsArgsSchema = z.object({ identifier: z.string().describe("Persona name, filename, or unique ID") });
- src/server/types.ts:11-11 (schema)TypeScript interface definition for the getPersonaDetails method on IToolHandler.getPersonaDetails(persona: string): Promise<any>;
- Migration mapping showing that get_persona_details has been replaced by get_element_details with type 'persona'. Indicates the tool is deprecated.'get_persona_details': { replacement: 'get_element_details', parameters: { type: 'persona' }, description: 'Gets detailed information about a persona element' },