Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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() },
  • Zod schema definition for the tool input arguments (empty object)
    export const GetIndicatorConfigArgsSchema = z.object({});
  • Core implementation of getIndicatorConfig() method which returns the current IndicatorConfig instance used for persona indicators
    getIndicatorConfig(): IndicatorConfig { return this.indicatorConfig; }
  • Inline JSON schema for tool input (empty object) in tool registration
    inputSchema: { type: "object", properties: {}, }, },
  • TypeScript interface definition for IToolHandler.getIndicatorConfig() method
    getIndicatorConfig(): 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/mcp-server'

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