@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.
13 lines • 488 B
TypeScript
/**
* Configuration Scanner - Scans configuration files for security issues
* Placeholder implementation - to be completed
*/
import type { SecurityScanner, SecurityFinding, ScanContext } from '../types.js';
export declare class ConfigurationScanner implements SecurityScanner {
name: string;
private config;
constructor(config: any);
scan(context: ScanContext): Promise<SecurityFinding[]>;
isEnabled(): boolean;
}
//# sourceMappingURL=ConfigurationScanner.d.ts.map