UNPKG

@dollhousemcp/mcp-server

Version:

DollhouseMCP - A Model Context Protocol (MCP) server that enables dynamic AI persona management from markdown files, allowing Claude and other compatible AI assistants to activate and switch between different behavioral personas.

19 lines 579 B
/** * FIX: DMCP-SEC-006 - Security audit suppression * This file delegates validation to element managers. * Audit logging happens in the managers themselves. * @security-audit-suppress DMCP-SEC-006 */ import { ElementCrudContext } from './types.js'; export interface ValidateElementArgs { name: string; type: string; strict?: boolean; } export declare function validateElement(context: ElementCrudContext, args: ValidateElementArgs): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=validateElement.d.ts.map