/** * MCP tool for retrieving per-MCP-server token analytics */ import type { AnalyticsManager } from '../../analytics/analytics-manager.js'; export declare const GET_MCP_SERVER_ANALYTICS_TOOL_DEFINITION: { readonly name: "get_mcp_server_analytics"; readonly description: "Get detailed token usage analytics broken down by MCP server (token-optimizer, filesystem, github, etc.). Shows which MCP servers are contributing the most to token usage and helps identify cross-server optimization opportunities."; readonly inputSchema: { readonly type: "object"; readonly properties: { readonly startDate: { readonly type: "string"; readonly description: "Optional start date filter in ISO 8601 format (e.g., 2025-01-01T00:00:00Z)"; }; readonly endDate: { readonly type: "string"; readonly description: "Optional end date filter in ISO 8601 format (e.g., 2025-12-31T23:59:59Z)"; }; }; }; }; export declare function getMcpServerAnalyticsTool(analyticsManager: AnalyticsManager): (args: { startDate?: string; endDate?: string; }) => Promise; //# sourceMappingURL=get-mcp-server-analytics.d.ts.map