Elite Reasoning MCP

Elite Reasoning MCP

A 66-tool reasoning pipeline that intercepts prompts to classify intent, check past mistakes, and generate execution plans, enabling any LLM to think harder and avoid repeating errors.

Category
访问服务器

README

<div align="center"> <img src="assets/banner.png" alt="Elite Reasoning MCP" width="400" />

<h3>Make any LLM think harder, reason better, and never repeat mistakes.</h3>

<p> <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square" alt="MIT License" /></a> <a href="https://pypi.org/project/elite-reasoning-mcp/"><img src="https://img.shields.io/pypi/v/elite-reasoning-mcp?style=flat-square&color=blue" alt="PyPI" /></a> <a href="https://pypi.org/project/elite-reasoning-mcp/"><img src="https://img.shields.io/pypi/dm/elite-reasoning-mcp?style=flat-square&color=green&label=downloads" alt="Downloads" /></a> <a href="https://www.python.org/downloads/"><img src="https://img.shields.io/pypi/pyversions/elite-reasoning-mcp?style=flat-square&logo=python&logoColor=white" alt="Python 3.11+" /></a> <a href="https://glama.ai/mcp/servers/Snehgabani/elite-reasoning-mcp"><img src="https://glama.ai/mcp/servers/Snehgabani/elite-reasoning-mcp/badges/score.svg" alt="Glama Score" /></a> <a href="https://github.com/Snehgabani/elite-reasoning-mcp/actions"><img src="https://img.shields.io/github/actions/workflow/status/Snehgabani/elite-reasoning-mcp/ci.yml?style=flat-square&label=CI" alt="CI" /></a> <a href="https://github.com/Snehgabani/elite-reasoning-mcp/stargazers"><img src="https://img.shields.io/github/stars/Snehgabani/elite-reasoning-mcp?style=flat-square&color=yellow" alt="Stars" /></a> </p>

<p> <b>66 tools</b> · <b>Zero API costs</b> · <b>132KB</b> · <b>Works with any model</b> </p>

<p> <a href="#quick-install">Install</a> · <a href="docs/TOOLS.md">All 66 Tools</a> · <a href="docs/ARCHITECTURE.md">Architecture</a> · <a href="CONTRIBUTING.md">Contributing</a> </p>

<br/>

<!-- One-Click Install Buttons --> <a href="https://cursor.com/install-mcp?name=elite-reasoning&config=eyJjb21tYW5kIjoiYmFzaCIsImFyZ3MiOlsiLWMiLCJjZCB+Ly5lbGl0ZS1yZWFzb25pbmcgMj4vZGV2L251bGwgfHwgZ2l0IGNsb25lIGh0dHBzOi8vZ2l0aHViLmNvbS9TbmVoZ2FiYW5pL2VsaXRlLXJlYXNvbmluZy1tY3AuZ2l0IH4vLmVsaXRlLXJlYXNvbmluZyAmJiBjZCB+Ly5lbGl0ZS1yZWFzb25pbmcgJiYgdXYgcnVuIHB5dGhvbiAtbSBjb3JlLmludGVncmF0aW9uLm1jcF9zZXJ2ZXIiXX0="><img src="https://img.shields.io/badge/Install_in-Cursor-000?style=for-the-badge&logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIgMkM2LjQ4IDIgMiA2LjQ4IDIgMTJzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwUzE3LjUyIDIgMTIgMnoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=" alt="Install in Cursor" /></a>    <a href="https://insiders.vscode.dev/redirect?url=vscode-insiders%3A%2F%2Fanysphere.cursor-mcp%2Finstall%3Fconfig%3DeyJjb21tYW5kIjoiYmFzaCIsImFyZ3MiOlsiLWMiLCJjZCB+Ly5lbGl0ZS1yZWFzb25pbmcgMj4vZGV2L251bGwgfHwgZ2l0IGNsb25lIGh0dHBzOi8vZ2l0aHViLmNvbS9TbmVoZ2FiYW5pL2VsaXRlLXJlYXNvbmluZy1tY3AuZ2l0IH4vLmVsaXRlLXJlYXNvbmluZyAmJiBjZCB+Ly5lbGl0ZS1yZWFzb25pbmcgJiYgdXYgcnVuIHB5dGhvbiAtbSBjb3JlLmludGVncmF0aW9uLm1jcF9zZXJ2ZXIiXX0="><img src="https://img.shields.io/badge/Install_in-VS_Code-007ACC?style=for-the-badge&logo=visual-studio-code&logoColor=white" alt="Install in VS Code" /></a> </div>

<br/>


<br/>

The Problem

AI coding assistants make the same mistakes over and over. They forget context between sessions. They don't stress-test their own reasoning. The quality of output varies wildly between prompts.

Elite Reasoning MCP intercepts every prompt and runs it through a reasoning pipeline — classifying intent, checking past mistakes, routing to the right tools, and tracking quality — before the LLM generates a single token.

<br/>

How It Works

Your Prompt
    │
    ├── Intent Classifier      →  debug / build / design / deploy (13 types)
    ├── Complexity Scorer      →  1–5, adjusts reasoning depth
    ├── Anti-Pattern Checker   →  "You made this mistake before..."
    ├── Prevention Rules       →  Custom auto-triggered safeguards
    ├── MCP & Skill Router     →  Routes to the best available tools
    └── Pre-flight Checklist   →  Per-task reasoning steps
    │
    ▼
Execution Plan → LLM follows it → Better output

Everything runs locally. No API calls. No cloud. A single SQLite file stores anti-patterns, decisions, quality scores, and calibration data across sessions.

<br/>

Quick Install

pip (Recommended)

pip install elite-reasoning-mcp

From Source (macOS / Linux)

git clone https://github.com/Snehgabani/elite-reasoning-mcp.git ~/.elite-reasoning
cd ~/.elite-reasoning && bash scripts/install.sh

Windows (PowerShell)

git clone https://github.com/Snehgabani/elite-reasoning-mcp.git $env:USERPROFILE\.elite-reasoning
cd $env:USERPROFILE\.elite-reasoning; .\scripts\install.ps1

Docker

docker run -v elite-brain:/data/brain ghcr.io/snehgabani/elite-reasoning-mcp

Requirements: Python 3.11+ and uv (auto-installed by the installer).

<br/>

What's Inside

66 Tools, 7 Categories

Category Tools What They Do
Core Pipeline orchestrate_request_tool assess_confidence reasoning_preflight Intent classification, complexity scoring, pre-flight checklists
Quality & Memory record_mistake check_anti_patterns record_quality_score get_quality_trend Anti-pattern database, quality tracking, trend analysis
Decision Making decision_council_review record_decision search_decisions 5-perspective adversarial review, decision logging
Risk Analysis fmea_analysis swiss_cheese_audit smoke_test_gate bias_scan Failure mode analysis, defense layer audit, bias detection
Calibration calibration_predict calibration_resolve calibration_score Prediction tracking with Brier scores
Learning record_hypothesis five_whys after_action_review socratic_challenge Root cause analysis, hypothesis testing, self-challenge
Autonomous autonomous_scan self_diagnose predictive_prevention Self-monitoring, proactive issue detection

Full reference: docs/TOOLS.md

<br/>

Key Capabilities

<table> <tr> <td width="50%">

Anti-Pattern Memory

Stores every mistake with root cause and fix. The LLM checks this database before acting — so it never makes the same mistake twice.

</td> <td width="50%">

Decision Council

Five adversarial perspectives review every major decision: Security, Scalability, Simplicity, User Impact, and Future Self.

</td> </tr> <tr> <td width="50%">

Confidence Calibration

Tracks prediction accuracy with Brier scores. You learn when to trust the LLM's confidence — and when to doubt it.

</td> <td width="50%">

Cross-Session Memory

Knowledge persists in a local SQLite database. Context compounds across conversations instead of resetting.

</td> </tr> <tr> <td width="50%">

FMEA Risk Analysis

Failure Mode and Effects Analysis before you build. Catch what can go wrong before it does.

</td> <td width="50%">

Custom Prevention Rules

Auto-triggered safeguards for your workflow. "Always check X before doing Y" — enforced automatically.

</td> </tr> </table>

<br/>

IDE Support

Works with any MCP-compatible client via stdio transport:

IDE Config File
Cursor ~/.cursor/mcp.json
Claude Desktop App Settings → MCP
VS Code + Continue .continue/config.json
Windsurf ~/.codeium/windsurf/mcp_config.json
Antigravity ~/.gemini/config/mcp_config.json

<details> <summary><b>Manual Configuration</b></summary>

Add to your MCP config:

{
  "mcpServers": {
    "elite-reasoning": {
      "command": "bash",
      "args": ["-c", "cd ~/.elite-reasoning && uv run python -m core.integration.mcp_server"]
    }
  }
}

On Windows, use scripts/run_elite_mcp.bat instead:

{
  "mcpServers": {
    "elite-reasoning": {
      "command": "cmd",
      "args": ["/c", "%USERPROFILE%\\.elite-reasoning\\scripts\\run_elite_mcp.bat"]
    }
  }
}

</details>

<br/>

Architecture

elite-reasoning-mcp/
├── core/
│   ├── integration/
│   │   └── mcp_server.py          # FastMCP server, tool registration
│   ├── memory/
│   │   ├── persistent_store.py    # SQLite — 15 tables, 32 indexes
│   │   ├── graph_store.py         # Knowledge graph
│   │   └── embedding.py           # Semantic search (optional)
│   ├── tools/
│   │   ├── orchestration.py       # Intent classification & routing
│   │   ├── reasoning_amplifier.py # Calibration, council, preflight
│   │   ├── adaptive.py            # Learning & user modeling
│   │   ├── analysis.py            # Risk, FMEA, confidence
│   │   ├── auditing.py            # Quality & anti-patterns
│   │   └── planning.py            # Goals & benchmarks
│   └── identity/
│       └── user_profile.py        # Per-user configuration
├── schemas/                       # 66 JSON tool schemas
├── scripts/                       # Installers & launchers
└── Dockerfile                     # Container support

Full architecture docs: docs/ARCHITECTURE.md

<br/>

Performance

Metric Value
Package size 132KB
Startup time < 2s
Per-tool latency < 50ms
Storage Local SQLite
API costs $0
Network calls Zero

<br/>

FAQ

<details> <summary><b>Does this work with weak / open-source models?</b></summary> <br/> Yes. The pipeline runs before the model generates output, so even weaker models get structured reasoning plans, anti-pattern checks, and quality tracking. The tools amplify whatever model you're using. </details>

<details> <summary><b>Will it slow down my responses?</b></summary> <br/> No. Each tool call takes < 50ms. The orchestrator adds one tool call per prompt. Total overhead is negligible. </details>

<details> <summary><b>How is this different from sequential-thinking?</b></summary> <br/> Sequential-thinking gives the LLM a scratchpad for multi-step reasoning. Elite Reasoning MCP goes further: it classifies intent, checks past mistakes, routes to specialized tools, tracks quality over time, and builds persistent memory across sessions. They're complementary — use both. </details>

<details> <summary><b>Is my data private?</b></summary> <br/> 100%. Everything runs locally. The SQLite database is on your machine. No telemetry, no API calls, no cloud. Your code and prompts never leave your computer. </details>

<br/>

Contributing

We welcome contributions. See CONTRIBUTING.md for guidelines.

Good first issues:

  • Add new reasoning tools
  • Improve the intent classifier
  • Write tests
  • Add benchmarks for output quality with/without the pipeline

<br/>

Security

All data stays local. Zero network calls. No telemetry. See SECURITY.md for the full policy.

Found a vulnerability? Email snehgabani@users.noreply.github.com — don't open a public issue.

<br/>

License

MIT — use it however you want.

<br/>


<div align="center"> <p> <sub>Built by <a href="https://github.com/Snehgabani">@Snehgabani</a></sub> </p> <p> <a href="https://github.com/Snehgabani/elite-reasoning-mcp"> <img src="https://img.shields.io/badge/Star_on_GitHub-★-yellow?style=flat-square" alt="Star" /> </a> </p> </div>

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选