@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 • 458 B
TypeScript
/**
* JSON Reporter - Generates JSON reports for programmatic consumption
* Placeholder implementation - to be completed
*/
import type { SecurityReport, ScanResult, SecurityFinding } from '../types.js';
export declare class JsonReporter implements SecurityReport {
private result;
constructor(result: ScanResult);
generate(): object;
getSummary(): string;
getFindings(): SecurityFinding[];
}
//# sourceMappingURL=JsonReporter.d.ts.map