Skip to main content
Glama

get_active_persona

Retrieve details about the currently active AI persona within the DollhouseMCP server, enabling dynamic persona management for Claude and compatible AI assistants.

Instructions

Get information about the currently active persona

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Zod schema definition for the get_active_persona tool input (no arguments required)
    export const GetActivePersonaArgsSchema = z.object({});
  • Core implementation of retrieving the currently active persona from the internal Map storage, returns Persona object or null
    getActivePersona(): Persona | null { if (!this.activePersona) return null; return this.personas.get(this.activePersona) || null; }
  • Interface definition for the tool handler method in IToolHandler (likely wraps the PersonaManager method)
    getActivePersona(): Promise<any>;

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DollhouseMCP/DollhouseMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server