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