We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/minipuft/claude-prompts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// @lifecycle canonical - Barrel exports for metrics services.
/**
* Metrics Module Exports
*
* Centralized exports for the metrics collector and related types.
* Provides event-driven metrics collection separated from execution logic.
*/
// Metrics collector
export { MetricsCollector, createMetricsCollector } from './analytics-service.js';
// Types
export type {
ExecutionData,
GateValidationData,
GateUsageMetric,
GateValidationResult,
FrameworkSwitchData,
ExecutionStats,
SystemMetrics,
FrameworkUsage,
AnalyticsEvent,
AnalyticsQueryOptions,
AnalyticsSummary,
PerformanceTrend,
PipelineStageType,
PipelineStageStatus,
PipelineStageMetric,
PipelineStageMetadata,
MetricStatus,
CommandExecutionMode,
CommandExecutionMetric,
} from './types.js';