Skip to main content
Glama
egnaro9
by egnaro9

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MCPTOOLS_DBNoPath to a SQLite file to persist the results of grade_answer and model_drift. Unset, nothing is written and the server behaves exactly as before.
MCPTOOLS_CORPUSNoPath to a notes.json corpus file (a {"id": "text", ...} file) used by the search tool. Set to point search at your own notes.

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
}

Tools

Functions exposed to the LLM to take actions

NameDescription
calcA

Evaluate an arithmetic expression safely (no code execution; names, calls and imports are rejected).

searchA

BM25 keyword search over a small bundled document corpus; returns the top matches with their scores.

grade_answerA

Check a draft answer against its sources and report which sentences the sources do NOT support — fabricated figures and claims the sources never make. Deterministic and lexical, not a model judgement. Call this on your own answer before giving it to the user when the answer is supposed to be grounded in provided material.

model_driftA

Look up how a live LLM is currently scoring on a public, frozen eval suite (accuracy, latency, answer length, reliability, refusal rate) and whether those moved since the previous weekly run. Use it to check whether a model you're about to rely on has quietly changed. Omit model to list every tracked model.

compare_runsA

Ask whether a project's most recent stored eval run regressed against the one before it — per-case, so a better average can't hide a case that broke.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a completely distinct purpose: arithmetic evaluation, keyword search, answer grading, model monitoring, and eval comparison. No overlap in functionality.

Naming Consistency4/5

Names are mostly descriptive and use lowercase with underscores, but there is slight inconsistency: calc and search are single words, while others follow a verb_noun or noun_noun pattern. Still very readable.

Tool Count5/5

5 tools is a well-scoped set for a utility server. Each tool serves a clear, non-redundant purpose, neither too few nor too many.

Completeness4/5

The tool set covers the stated utilities (math, search, answer checking, model drift, run comparison) comprehensively for its scope. Minor gaps like source management could exist but aren't critical.

Maintenance

ActivitySlowing
ResponsivenessNo issues