ai-usage-metrics-mcp
Related Servers
Alternatives to ai-usage-metrics-mcp
No user-submitted related servers found.
Related Servers
- AlicenseAqualityBmaintenanceAn MCP server that provides cost and reliability observability for LLM and agent workflows. It records model calls and allows querying and aggregating telemetry data through MCP tools.6MIT
- AlicenseNot gradedqualityAmaintenanceAn MCP server that gives AI agents observability over their own tool calls, enabling auditing, cost tracking, latency analysis, and alerting.MIT
- AlicenseAqualityAmaintenanceAn MCP server that records agent execution metrics and exposes a Context Window Explorer to visualize exactly what entered the model's context window across sessions, tokens, and tool calls.83MIT
- AlicenseAqualityBmaintenanceMCP server for AI agent observability, providing trace and span logging, search, latency/tokens/cost metrics, and anomaly detection using an in-memory buffer.613 npmMIT
- AlicenseBqualityCmaintenanceAn MCP server for unified cost tracking and analysis across AWS, OpenAI, and Anthropic. It enables users to query expenditures, compare costs across providers, and analyze usage trends through natural language.10MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for tracking and managing costs per AI agent, with budget alerts, anomaly detection, and model cost comparison.25 npmMIT
TDQS
Scored across 5 tools
Each tool has a distinct primary purpose: write (log_model_call), search raw calls (search_model_calls), list session summaries (list_sessions), fetch session-scoped calls (get_session_calls), and aggregate stats (get_aggregate_metrics). However, get_session_calls overlaps with search_model_calls since a session filter could achieve the same result, and search/aggregate both operate on the same call set with filters.
All names follow a consistent snake_case verb_noun pattern (log_, search_, list_, get_, get_). Verbs vary appropriately by operation while the structure stays predictable and readable.
Five tools are well-scoped for a focused usage-metrics server: one write path, three read/query paths, and one aggregation path. Each tool earns its place without redundancy or gaps in count.
The core lifecycle is covered: logging calls, retrieving them, session grouping, and aggregation. Minor gaps exist around deletion/retention and explicit session creation, but agents can work around these for typical metrics workflows.