Recommend Agentic Trust Layer
OfficialIntegrates Google's Gemini API for claim structure analysis, challenge, and calibration in the verification pipeline.
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., "@Recommend Agentic Trust LayerIs it true that water boils at 100°C?"
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.
Recommend Agentic Trust Layer
A claim goes in. A truth score 0–100 and a separate, honest confidence come out — with the sources and the reasoning, not just a verdict.
The agentic trust layer for your AI stack: a deterministic verification pipeline your agents call before they act on something. Not another agent — the thing that tells your agents what's true.

Ask any LLM "how sure are you?" and it says ~95–100% on almost everything, including its mistakes. The product is not the answer — anyone can produce an answer. The product is what the answer is worth. Nothing here is answered from model memory: every judgement is made against text fetched live for that specific claim, and the confidence falls when the evidence is thin, stale, or argues with itself.
Two numbers, deliberately separate:
Truth score 0–100 — above 50 leans true. This is about the claim.
Confidence — how much to trust our verdict. Falls when lanes disagree, when a lane comes back empty, when the adversarial pass breaks a lane, or when the claim is the kind evidence cannot settle.
No framework, no build step: one Python stdlib server (server.py), one HTML file
(index.html), SSE streaming so you watch the evidence lanes land live.
Quickstart
git clone https://github.com/recommend-dev/recommend-agentic-trust-layer.git
cd recommend-agentic-trust-layer
pip install -r requirements.txt # just `requests` (+ google-auth for the Vertex path)
cp .env.example .env # add GEMINI_API_KEY + EXA_API_KEY — that's the minimum
python3 server.py # → http://localhost:8899Works with two keys: a free Gemini key (aistudio.google.com/apikey) and an Exa key. Better with more — a lane whose key is missing simply sits the check out and the verdict says so (a silent lane costs confidence; it never fakes coverage).
Related MCP server: stillos-notary-mcp
Pipeline
claim
└─ 1. STRUCTURE (Gemini) → normalized falsifiable sentence, claim_type, entities,
sub-claims, 3 query angles (one hunting contradiction)
└─ 2. LANES (parallel, routed by claim_type)
always : Grounded Web · Semantic Web · Live Index
+ deep : Deep Research (checkbox)
+ predictive: Prediction Market (auto)
+ causal /
statistical: Research Literature (auto)
└─ 3. JUDGE per lane — only against what THAT lane fetched, background knowledge forbidden
└─ 3b CHALLENGE per lane — opposing counsel attacks it; if it breaks, strength × 0.55
└─ 4. SUB-CLAIMS — each atomic assertion rated against pooled evidence
└─ 5. AGGREGATE — strength-weighted; disagreement and silence both cost confidence
└─ 6. CALIBRATION — one-way ratchet: may only LOWER confidence, never raise it
└─ 7. READOUT — 2-3 plain sentences on what the evidence showed and whyLane routing (deliberate)
Firing every source at every claim is slower and noisier. No prediction market exists for settled history; a news write-up doesn't settle cause-and-effect. Knowing which authority settles which kind of question is part of the design.
Lane | Fires when | Weight | Provider | Key |
Grounded Web | always | 1.15 | Exa |
|
Semantic Web | always | 0.9 | Exa |
|
Live Index | always | 0.85 | SerpAPI (Google + answer box) |
|
Deep Research |
| 1.35 | Exa per sub-claim (~7s); |
|
Prediction Market | claim_type | 1.25 | Polymarket Gamma | free, keyless |
Research Literature | claim_type | 1.4 | OpenAlex + Europe PMC | free, keyless |
Behaviour that took work to get right
Unfalsifiable claims never get a factual verdict. "X is going to attack Y" used to return REFUTED at 96%. Absence of reporting about the future is not proof. It now returns a capped-confidence lean with a note — "nobody credible is reporting this" is real information, but we don't pretend to close an open question.
The intake step never corrects the claim. A false claim must be checked as asserted — silently flipping a myth into its debunking makes the system report the opposite of what was asked.
A prediction market is belief, not fact. Its strength is capped so it can inform a lean but never carry a verdict on its own.
Every prompt knows today's date. Without it, models guess — and penalise good evidence for being "in the future".
(p_true or 0.5)when every lane said 0.0.0is falsy in Python. The classics.
MCP — give your agent a verify_claim tool
The whole pipeline is exposed as one MCP tool over streamable HTTP (JSON-RPC over
POST /mcp), gated on a bearer key. A demo key is auto-generated into keys.json on first
run and printed at startup (and shown in the UI on localhost).
claude mcp add --transport http recommend-trust \
http://localhost:8899/mcp \
--header "Authorization: Bearer <key from startup output>"Returns verdict, score, confidence, per-lane breakdown with challenge flags, verified sub-claims with verdicts, and sources. Point your agent at it and stop letting it answer factual questions from memory.
Tracking
Any verdict can be pinned to your session and is re-checked on a schedule
(TRACK_EVERY_H, default 24h), so you can watch a claim's score move as the evidence does.
Spend guards
Every check costs real API credit, so the server ships with per-IP and global daily caps
(PER_IP_DAY=25, GLOBAL_DAY=400) — tune them in .env before putting an instance on a
public host.
Tests
Real-Chrome E2E tests (macOS Chrome path is hardcoded in the scripts — adjust
executablePath for your OS):
cd tests && npm install
node uitest.js # UI invariants (modal, gauge, MCP card, vendor-name leak check)
node tracktest.js # tracking flow
node cmptest.js # compare endpoint
node scaletest.js # layout at widthsDeploying behind a reverse proxy
The front-end derives every path from location.pathname, so it works at / locally and
under any path prefix in production — don't reintroduce absolute /api/... paths. If your
proxy buffers responses (Caddy, nginx), disable buffering for this route
(Caddy: flush_interval -1) or SSE will never stream. Set HOST=0.0.0.0 to listen beyond
localhost.
Roadmap
OKF integration. Google's Open Knowledge Format v0.2 just standardized
generated_by/verified_by/ trust-tier fields for agent-written knowledge — slots for a verdict, with no machine to produce one. We're building the verifier that fills them: walk an OKF bundle, fact-check each concept's load-bearing claims, stamp the result with evidence and a calibrated confidence instead of a self-reported signature.Pluggable lanes. Add your own evidence lane (Brave Search, internal corpus, …) without touching the pipeline.
License
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.
Related MCP Servers
- AlicenseAqualityBmaintenanceVerifies factual claims against live sources and returns a verdict, confidence score, and citations for any agent to use before stating uncertain facts.Last updated6MIT
- Alicense-qualityBmaintenanceEnables submitting claims and receiving Ed25519-signed, hash-chained verdicts resolved against real external ground truth, supporting resolvers like GitHub PRs, on-chain transactions, URL JSON, HTTP status, and Kalshi markets.Last updated35MIT
- Alicense-qualityBmaintenanceProvides AI agents with verified memory by decomposing insights into atomic claims, each with an executable falsifier, and re-verifying them against reality to ensure recall returns fresh facts.Last updated1Apache 2.0
- Flicense-qualityDmaintenanceA verification component for agents that checks claims on public webpages and returns structured results with evidence text, screenshots, and deterministic JSON.Last updated
Related MCP Connectors
Verify claims with verdict, confidence & cited sources; batch verify, source checks, daily brief.
Deterministic fact verification for AI agents — checksums & curated data, not guesses.
Fact-check claims against independent sources — fast verdict or deep multi-step investigation.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/recommend-dev/recommend-agentic-trust-layer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server