eval-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@eval-mcp-serverscore this text for AI slop: 'In today's fast-paced world, let's delve into this robust, transformative paradigm.'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
eval-mcp-server — expose your eval gate to any AI client via MCP
TL;DR. A Model Context Protocol (MCP) server that exposes my own AI-slop scanner (and a RAG grounding grader) as MCP Tools, a Resource, and a Prompt — so any MCP client (e.g. Claude Desktop) can call my eval gate as a first-class capability. Most MCP demos ship Tools only; this one demonstrates all three primitives.
Headline metric: 3 MCP primitives exposed (2 Tools · 1 Resource ·
1 Prompt) — 100% tool-schema-validity (10/10) and 100% round-trip parity
(4/4) on the conformance suite (20/20 total checks). score_slop output is
byte-for-byte identical to the underlying engine's score_text.
What is MCP, in two sentences
MCP is an open protocol that lets AI clients call external capabilities through three primitives — Tools (callable functions), Resources (readable context), and Prompts (reusable templates). Think of it as "USB-C for AI": one standard plug, and any host can drive any server.
How a reviewer clicks it
Run python3 test_client.py "<text>" — it prints a SLOP INDEX, a grade_rag
score, the rubric resource, and the rendered prompt. No MCP host, no API key
needed (it falls back to calling the logic directly if mcp isn't installed).
Register the snippet in Claude Desktop and the same tools/resource/prompt appear
in the client.
The three primitives
Primitive | Name | What it does |
Tool |
| Scores prose for AI-slop tells → |
Tool |
| Deterministic RAG grounding/faithfulness score: fraction of the answer's content tokens supported by the context → score + verdict ( |
Resource |
| Serves the rule list, thresholds, scoring weights, and verdict bands — derived from the engine so it never drifts. |
Prompt |
| Reusable template that wires |
Related MCP server: ejentum-mcp
Run it
1. Reproduce the metric (one command, no key, no mcp)
python3 tests/test_conformance.pyTests the stdlib logic module directly. Prints tool-schema-validity % and round-trip-parity %. Exits non-zero on any failure.
2. Call the gate (the reviewer path)
python3 test_client.py "In today's fast-paced world, let's delve into this robust, transformative paradigm."If mcp is installed it does a real stdio round-trip against server.py;
otherwise it calls the logic directly. Either way you get JSON back.
3. Run the MCP server over stdio
pip install -r requirements.txt # installs the official `mcp` SDK
python3 -m server # serves Tools/Resources/Prompts over stdio4. Register in Claude Desktop
See claude_desktop_config.snippet.json — merge the eval-gate entry into your
claude_desktop_config.json, fix the absolute path, restart, and the
tools/resource/prompt show up in the client.
Architecture (why it's testable without mcp)
The logic lives in stdlib-only modules that import only slop_engine:
slop_engine.py vendored scoring core (stdlib-only; copy of the sibling slop-scanner engine)
tools/logic.py single source of truth: registers every primitive
tools/grade_rag.py deterministic grounding grader (+ optional Anthropic live mode)
resources/rubric.py builds the rubric://slop-rules payload from the engine
prompts/review_draft.py the review-draft prompt template
server.py THIN MCP wrapper — imports `mcp`, registers the above over stdio
test_client.py stdio round-trip if mcp present, else direct-logic fallback
tests/test_conformance.py runnable as plain python3; tests logic, not mcp
claude_desktop_config.snippet.json
requirements.txtserver.py is a thin adapter; all behaviour is in the logic modules. That's why
the conformance suite and the test-client fallback run with zero dependencies.
The four-part contract
TL;DR + headline metric + run steps + reviewer line — above.
Reproducible metric —
python3 tests/test_conformance.py(one command).Offline / no-key path — everything here runs with no API key; the tools are fully deterministic.
grade_raghas an optional Anthropic live mode (live=True), lazy-imported and gated onANTHROPIC_API_KEY; it defaults to the stdlib check and never touches the network otherwise.Honest scope — this project is about protocol/integration rigor: it exposes deterministic eval tools over MCP correctly, with all three primitives and tested round-trip parity. It is not a claim about model quality —
score_slopis a heuristic linter (flags mean "go look," not "delete"), andgrade_ragis a token-overlap grounding proxy, not a semantic judge. Cross-link: this makes the sibling slop-scanner a callable capability for any agent — register it once and any MCP host can gate its own output on it.
Christian Macion — AI / Agent Engineer
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/christianmacion26/eval-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server