get_indicator_config
Retrieve current persona indicator settings from DollhouseMCP, enabling dynamic AI persona management and configuration adjustments for Claude and compatible assistants.
Instructions
Get current persona indicator configuration
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server/tools/ConfigTools.ts:55-64 (registration)Registration of the get_indicator_config tool with empty input schema and a handler that calls server.getIndicatorConfig()tool: { name: "get_indicator_config", description: "Get current persona indicator configuration", inputSchema: { type: "object", properties: {}, }, }, handler: () => server.getIndicatorConfig() },
- src/persona/PersonaManager.ts:362-364 (handler)Concrete implementation of getIndicatorConfig method that returns the stored IndicatorConfig instance used by the persona managergetIndicatorConfig(): IndicatorConfig { return this.indicatorConfig; }
- src/types/mcp.ts:104-104 (schema)Zod schema definition for the tool's input arguments (empty object as expected)export const GetIndicatorConfigArgsSchema = z.object({});