honest-reasoning-mcp
Uses the OpenAI API to power its reasoning tools, allowing users to leverage OpenAI models with their own API key.
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., "@honest-reasoning-mcpAnalyze this PR diff with honest_reason and check for recurring gaps."
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.
Honest Reasoning Engine — MCP Connector
Free, self-hosted MCP server. Attach it to any MCP-compatible AI client (Claude Desktop, Claude Code, Cursor, etc.) to get three tools that push back against a specific, measured failure mode: AI usage that quietly increases your workload instead of reducing it (surface-plausible output that isn't actually verified, decisional over-trust in AI claims, and review attention spent on the wrong things).
Free for personal/non-commercial use, no redistribution — see
LICENSE.md. You run this yourself, with your own
OpenAI API key — nothing is sent to any server we operate.
Tools
honest_reason— structures any analysis/output-review/task around 4 disciplines: ruthless simplification, calibrated confidence labels (with a hard-coded guardrail — a model can't self-report "strong" confidence on fewer than 3 pieces of evidence, the code overrides it), falsification search, and honest limits.check_alignment_drift— logs everyhonest_reasoncall's "honest limits" locally, and detects when the same gap keeps recurring (e.g., "idempotency key never verified" showing up across many PRs). Pure embedding-similarity clustering, no LLM judgment, deterministic. Verified scope: catches literal/near-literal recurring gaps. Does not currently generalize across differently-worded gaps that share only an abstract category — that would need an added classification layer (not built yet).review_scope_card— turns a list of changed files/symbols (with reference counts you compute yourself, e.g. viagrep) into a deterministic attention budget: what's worth reading carefully vs. safe to skim, given limited review time.
Related MCP server: UltraThink
Setup
npm installSet your OpenAI key (required — this connects to your OpenAI account, you pay for your own usage):
export OPENAI_API_KEY=sk-... # macOS/Linux
$env:OPENAI_API_KEY = "sk-..." # Windows PowerShellOptional env vars:
OPENAI_CHAT_MODEL(defaultgpt-4o-mini— cheaper; set togpt-4ofor higher quality)EMBED_MODEL(defaulttext-embedding-3-small)HONEST_REASONING_DATA_DIR(default~/.honest-reasoning— wherecheck_alignment_drift's local signal log lives)
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"honest-reasoning": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/index.js"],
"env": { "OPENAI_API_KEY": "sk-..." }
}
}
}Claude Code / Cursor (or any client that reads .mcp.json)
{
"mcpServers": {
"honest-reasoning": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/index.js"],
"env": { "OPENAI_API_KEY": "sk-..." }
}
}
}Verify it works
node test/smoke.mjs /tmp/honest-reasoning-test-dataRuns review_scope_card and check_alignment_drift without needing an API
key, plus confirms honest_reason gives a clear setup error if the key is
missing. With OPENAI_API_KEY set, it also exercises the live LLM call.
What this is not
Not a fact-checker, not a source of truth. It structures how an AI reasons about uncertainty — confidence labels, falsification conditions, disclosed limits — it does not verify facts against the world. Don't use it as the sole basis for financial, medical, legal, or safety-critical decisions.
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/NIWS-shindongju/honest-reasoning-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server