Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GOOGLE_API_KEYNoAPI key for Google Gemini models
OPENAI_API_KEYNoAPI key for OpenAI models (includes judge model)
ANTHROPIC_API_KEYNoAPI key for Anthropic Claude models
MCP_LLM_EVAL_JUDGE_MODELNoModel to use as judge for scoringgpt-4o-mini

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
run_evaluationB

Run an LLM evaluation: load a dataset, query models via streaming, score responses with an LLM-as-judge, and return per-question scores, aggregate summary, and pass/fail status.

check_thresholdsB

Check evaluation results against quality gate thresholds. Returns pass/fail per metric and overall gate status.

list_evaluationsA

List past evaluation runs in a directory. Returns metadata for each run: timestamp, dataset, models, pass/fail, and cost.

get_evaluationA

Retrieve the full details of a specific evaluation run: per-question per-model scores, responses, and judge reasoning.

compare_runsB

Compare two evaluation runs and detect regressions. Flags metrics that worsened beyond configurable tolerance.

evaluate_retrievalA

Run retrieval metrics (recall@k, precision@k, MRR, nDCG@k) against a labelled dataset with a configurable retrieval adapter. Returns per-query metrics, dataset-level aggregate, and p50/p95 retrieval latency.

evaluate_rag_end_to_endB

Run the full RAG pipeline: retrieve chunks, generate answers using the retrieved chunks as context, and score with context_relevance and citation_faithfulness judges. Returns retrieval metrics, generation metrics, and judge scores per query, plus an aggregate.

check_retrieval_driftA

Compare two retrieval evaluation result files and detect drift. Flags metrics that have regressed beyond configurable tolerance. Takes two result-set paths; does not persist history itself.

simulate_poisoned_corpusB

[STUB - not implemented in v0.5.0] Inject poisoned chunks into a corpus and re-run retrieval evaluation. Returns a clear not-implemented response.

format_pr_commentA

Generate a markdown PR comment from evaluation results. Includes results table, regression details, and threshold status.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 10 tools

Disambiguation4/5

Most tools have distinct purposes, but check_retrieval_drift and compare_runs both detect regressions, causing slight overlap. Descriptions help clarify, but an agent might confuse them.

Naming Consistency4/5

Most tools use verb_noun pattern (e.g., check_thresholds, evaluate_retrieval), but evaluate_rag_end_to_end is more verbose and deviates slightly. Overall consistent.

Tool Count5/5

10 tools is well-scoped for an evaluation server, covering retrieval, generation, comparison, and reporting without being overwhelming.

Completeness4/5

The set covers core evaluation workflows (retrieval, RAG, comparison, thresholds, reporting). Missing delete or batch management, but that's acceptable. The stub tool indicates a planned feature not yet implemented.

Maintenance

ActivityInactive
ResponsivenessNo issues