Skip to main content

MCP server for agentic LLM evaluation: jury scoring, agent tracing via OpenTelemetry, document-grounded QA generation, PDF reports.

Project description

Agentic AI-Guided Evaluation Platform

An LLM evaluation system where you describe what you want to evaluate in natural language — an expert AI agent handles dataset generation, judge configuration, execution, and analysis end-to-end, and hands you back a PDF report.

Features

  • Expert agent interface — The agent knows evaluation best practices, recommends criteria and validates configurations before execution. No config files or CLI expertise needed.
  • Jury system — Multiple judges from different model families (e.g. Claude Sonnet, Nova Pro, Nemotron) each evaluate distinct aspects of every response — correctness, reasoning, completeness. Combining diverse judge families reduces self-preference bias, and aggregating weak signals from diverse judges and criteria produces stronger results than any single judge (Lifshitz et al., 2025, Saad-Falcon et al., 2025).
  • Adaptable binary scoring — Binary pass/fail per criteria rather than subjective numeric scales, shown to produce more reliable results across judges (Mallinar et al., 2025). Criteria are tailored by the agent to what you're evaluating.
  • Document-grounded synthetic data — Upload PDFs, knowledge bases, or product docs and generate QA pairs grounded in your actual content, reflecting real customer scenarios.
  • Agentic eval support — Evaluate any agent calling Bedrock (Strands, LangChain, custom boto3) with zero code modification via OpenTelemetry instrumentation.

Quick Start

Prerequisites

  • AWS credentials with Bedrock model access
  • uv installed
  • Claude Code, Cursor, Kiro, VS Code, or any MCP-compatible IDE

Install

One command — auto-detects which IDEs are on your machine (Claude Code, Kiro, VS Code, Cursor, Codex), asks which to configure, registers the MCP server in each, and warms the uvx cache:

uvx --from llm-evaluation-system eval-mcp install

Add --yes to skip prompts, --ide claude-code (or comma-separated) to target a specific subset, --force to overwrite an existing entry. Then restart your IDE.

Manual install (if you'd rather not use eval-mcp install)

Claude Code:

claude mcp add eval -s user -- uvx --from llm-evaluation-system eval-mcp

Cursor — one-click deeplink: Install eval-mcp in Cursor

Kiro~/.kiro/settings/mcp.json:

{"mcpServers": {"eval": {"command": "uvx", "args": ["--from", "llm-evaluation-system", "eval-mcp"]}}}

Codex~/.codex/config.toml:

[mcp_servers.eval]
command = "uvx"
args = ["--from", "llm-evaluation-system", "eval-mcp"]

VS Code:

code --add-mcp '{"name":"eval","command":"uvx","args":["--from","llm-evaluation-system","eval-mcp"]}'

Using a coding agent to install? Point it at INSTALL.md — it just runs eval-mcp install --yes and asks about optional S3 team sharing.

Upgrading

uvx caches the resolved version per package. To pull newer releases, invalidate the cache:

uv cache clean llm-evaluation-system

Restart your IDE after. The next launch resolves and caches the newest published version.

Use

Ask your AI assistant to evaluate agents, models, or prompts — using a dataset you provide or one generated from your documents or context:

  • "Evaluate my agent at ./my_agent.py"
  • "Compare Claude Sonnet vs Nova Pro on this dataset"
  • "Test these three prompt templates against my golden QA set"
  • "Generate a dataset from this PDF and run an eval"

The agent picks the right mode, auto-generates whatever's missing (dataset, judge, criteria), runs it, opens the results viewer in your browser, and hands you a PDF report.

Team Sharing (S3)

Share datasets, judges, configs, and eval results across your team via a shared S3 bucket. No servers needed.

Setup

First on the team — creating the bucket? One person runs this once:

git clone https://github.com/awslabs/llm-evaluation-system.git /tmp/eval-mcp-infra
cd /tmp/eval-mcp-infra/infra/eval-logs-bucket
./create-bucket.sh my-team-evals

The script prompts for an AWS profile if one isn't already set (mirrors deploy.sh / destroy.sh), validates credentials with sts get-caller-identity, then runs terraform init + apply. Works with SSO profiles — it'll tell you to run aws sso login --profile <name> if your session expired.

The Terraform module appends your AWS account ID so the actual bucket is my-team-evals-<your-account-id> — globally unique without you having to invent a unique name. Terraform prints the full name under the bucket_name output.

Everyone (including the bucket creator), on every machine:

uvx --from llm-evaluation-system eval-mcp init my-team-evals

eval-mcp init resolves the account-ID suffix automatically, so all teammates type the same short name. User identity is auto-detected from AWS credentials; projects are auto-discovered from the bucket.

How it works

s3://my-team-evals-<your-aws-account-id>/
  users/alice/            ← Alice's evals, datasets, judges, configs (auto-replicated on every write)
  users/bob/              ← Bob's
  projects/project-alpha/ ← shared team evals
  projects/project-beta/  ← shared team evals
  • Every write (eval result, dataset, judge, config, PDF report) auto-replicates to users/{you}/ in the background
  • Every list/read auto-pulls from S3 first (debounced) so your local state mirrors S3
  • eval-mcp share my-project → promote your stuff to a shared project prefix
  • eval-mcp sync → manual reconcile (used after long offline periods or on a fresh laptop)

Deploy Full Platform on EKS

For a multi-user web app with Cognito auth, chat UI, and per-user isolation, the repo also ships an EKS deployment. This is the heavyweight path — for most users the MCP above is enough.

./deploy.sh

The script auto-installs Terraform, kubectl, and Helm, then deploys the complete platform (Cognito auth, CloudFront, WAF, per-user isolation).

User Management

./manage-users.sh create user@example.com
./manage-users.sh list
./manage-users.sh delete user@example.com

Teardown

./destroy.sh

Architecture diagrams: ARCHITECTURE.md. OIDC config, Helm values, terraform variables, and manual deployment steps: docs/DEVELOPMENT.md.

Architecture

Three diagrams covering the three distinct ways code in this repo runs — eval execution, the MCP server, and the EKS deployment: ARCHITECTURE.md.

Roadmap

See ROADMAP.md for what's planned next and where contributions are most welcome.

Contributing / Local Development

See docs/DEVELOPMENT.md for how to clone, run from source, rebuild the viewer frontend, and contribute.

Acknowledgments

Built on Inspect AI by the UK AI Security Institute.

Legal Disclaimer

Sample code, software libraries, command line tools, proofs of concept, templates, or other related technology are provided as AWS Content or Third-Party Content under the AWS Customer Agreement, or the relevant written agreement between you and AWS (whichever applies). You should not use this AWS Content or Third-Party Content in your production accounts, or on production or other critical data. You are responsible for testing, securing, and optimizing the AWS Content or Third-Party Content, such as sample code, as appropriate for production grade use based on your specific quality control practices and standards. Deploying AWS Content or Third-Party Content may incur AWS charges for creating or using AWS chargeable resources, such as running Amazon EC2 instances or using Amazon S3 storage.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llm_evaluation_system-0.8.0.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llm_evaluation_system-0.8.0-py3-none-any.whl (780.2 kB view details)

Uploaded Python 3

File details

Details for the file llm_evaluation_system-0.8.0.tar.gz.

File metadata

  • Download URL: llm_evaluation_system-0.8.0.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for llm_evaluation_system-0.8.0.tar.gz
Algorithm Hash digest
SHA256 43ecd5c64626da8141b76759fce8ee9128fb805618f1f7a9de6f4f9c0a78032a
MD5 bd4f8b2870f3677ed3809768cddc1113
BLAKE2b-256 042e822fe92021df51e660d2cc0198a3652ac83c82279a2ccbd8da6881b3bc1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_evaluation_system-0.8.0.tar.gz:

Publisher: publish.yml on awslabs/llm-evaluation-system

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file llm_evaluation_system-0.8.0-py3-none-any.whl.

File metadata

File hashes

Hashes for llm_evaluation_system-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 da6c2cd2af78773c1d63749d8a77b9a4941749a6cd4e108578631c873d89a3be
MD5 55b320311297a1964071016875c9f48f
BLAKE2b-256 eb99695741c3069ab5f62b246d341c136504d02096e92737ea84744b707b8283

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_evaluation_system-0.8.0-py3-none-any.whl:

Publisher: publish.yml on awslabs/llm-evaluation-system

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page