get_indicator_config
Retrieve the current persona indicator configuration from DollhouseMCP, enabling dynamic AI persona management and behavioral activation for compatible AI assistants.
Instructions
Get current persona indicator configuration
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server/tools/ConfigTools.ts:54-64 (registration)Registration of the 'get_indicator_config' tool including name, description, empty input schema, and handler that delegates to server.getIndicatorConfig(){ tool: { name: "get_indicator_config", description: "Get current persona indicator configuration", inputSchema: { type: "object", properties: {}, }, }, handler: () => server.getIndicatorConfig() },
- src/types/mcp.ts:104-104 (schema)Zod schema definition for the tool input arguments (empty object)export const GetIndicatorConfigArgsSchema = z.object({});
- src/persona/PersonaManager.ts:362-364 (handler)Core implementation of getIndicatorConfig() method which returns the current IndicatorConfig instance used for persona indicatorsgetIndicatorConfig(): IndicatorConfig { return this.indicatorConfig; }
- Inline JSON schema for tool input (empty object) in tool registrationinputSchema: { type: "object", properties: {}, }, },
- src/server/types.ts:57-57 (helper)TypeScript interface definition for IToolHandler.getIndicatorConfig() methodgetIndicatorConfig(): Promise<any>;