iris-eval/mcp-server
Related Servers
Alternatives to iris-eval/mcp-server
No user-submitted related servers found.
Related Servers
- AlicenseAqualityBmaintenanceMCP server for AI agent observability, providing trace and span logging, search, latency/tokens/cost metrics, and anomaly detection using an in-memory buffer.614 npmMIT
- AlicenseNot gradedqualityBmaintenanceMCP server for AI agent security guardrails. Provides input validation, prompt injection detection, PII redaction, output filtering, policy enforcement, rate limiting, and comprehensive audit logging.31 npm1MIT
- 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
- AlicenseAqualityAmaintenanceAn MCP server that exposes governance, trust-scoring, compliance, guardrail, cost, drift, and supply-chain scanning tools and resources to any MCP client over stdio, Streamable HTTP, or legacy HTTP+SSE. It lets agents route every tool call through a deterministic five-way decision (allow, redact, require approval, deny, or quarantine) with hash-chained evidence, human approval workflows, and in-agent trust gates for LangChain, LangGraph, and Google ADK.3048 PyPI2MIT
- 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
- AlicenseAqualityAmaintenanceMCP server exposing AI agent observability tools: list, inspect, and deterministically replay recorded agent execution traces for debugging failures.1Apache 2.0
TDQS
Scored across 9 tools
Each tool targets a distinct resource and action: traces are logged, queried, deleted; evaluations are either deterministic or LLM-judge based, with citation-specific analysis separate; rules are listed, deployed, and deleted. No two tools appear to do the same thing, and the boundary between evaluate_output and evaluate_with_llm_judge is clearly drawn.
All tool names follow a consistent verb_noun snake_case pattern: log_trace, delete_trace, get_traces, list_rules, deploy_rule, delete_rule, evaluate_output, evaluate_with_llm_judge, verify_citations. Even longer names retain the pattern, and there is no mixing of styles or vague verbs.
With 9 tools, the server is well-scoped. Each tool covers a necessary operation for the agent evaluation domain, and there is no bloat or redundancy. The count feels appropriate for the complexity of the domain, fitting the ideal 3-15 range.
The tool surface covers the full lifecycle: trace creation, retrieval, deletion; two complementary evaluation paths (deterministic and LLM-based) plus citation verification; rule deployment, listing, and deletion. There are no obvious dead ends or missing operations for the stated purpose of storing and evaluating agent executions.