@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.
16 lines • 700 B
TypeScript
/**
* Collector for MCP-AQL operation metrics.
*
* Reads from OperationMetricsTracker and emits counter, histogram,
* and gauge metric entries for the MetricsManager pipeline.
*/
import type { IMetricCollector, MetricEntry } from '../types.js';
import { OperationMetricsTracker } from '../OperationMetricsTracker.js';
export declare class OperationMetricsCollector implements IMetricCollector {
private readonly tracker;
readonly name = "operation-metrics";
readonly description = "MCP-AQL operation counts, durations, and endpoint breakdown.";
constructor(tracker: OperationMetricsTracker);
collect(): MetricEntry[];
}
//# sourceMappingURL=OperationMetricsCollector.d.ts.map