Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI → MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
  • Remote MCP ↗ (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) ↗ (opens in a new tab)
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 💻 Developer Tools
  3. Leghis Smart Thinking
Leghis Smart Thinking logo
Health: ActiveRecent health check succeeded.Last checked 8/10/2026, 11:02:28 PM

Leghis Smart Thinking

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time — check back soon.
View Repository34 GitHub StarsTotal stargazers on GitHub for the source repository (34 stars).Visit Website

Find relevant Smart‑Thinking memories fast. Fetch full entries by ID to get complete context. Spee…

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag — we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON ▾

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "leghis-smart-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "smart-thinking-mcp"
      ]
    }
  }
}

💡 Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing Alternatives💻 More in Developer Tools

Documentation Overview

MseeP.ai Security Assessment Badge

Smart-Thinking

npm version License: MIT TypeScript Platform: Windows Platform: macOS Platform: Linux

Smart-Thinking is a Model Context Protocol (MCP) server that delivers graph-based, multi-step reasoning without relying on external AI APIs. Everything happens locally: similarity search, heuristic-based scoring, verification tracking, memory, and visualization all run in a deterministic pipeline designed for transparency and reproducibility.

Core Capabilities

  • Graph-first reasoning that connects thoughts with rich relationships (supports, contradicts, refines, contextual links, and more).
  • Local TF-IDF + cosine similarity engine powering memory lookups and graph expansion without third-party embedding services.
  • Heuristic quality evaluation that scores confidence, relevance, and quality using transparent rules instead of LLM calls.
  • Verification workflow with detailed statuses and calculation tracing to surface facts, guardrails, and uncertainties.
  • Persistent sessions that can be resumed across runs, keeping both the reasoning graph and verification ledger in sync.

Reasoning Flow

  1. Session bootstrap – ReasoningOrchestrator initializes a session, restores any saved graph state, and prepares feature flags.
  2. Pre-verification – deterministic guards inspect the incoming thought, perform light-weight calculation checks, and annotate the payload.
  3. Graph integration – the thought is inserted into ThoughtGraph, linking to context, prior thoughts, and relevant memories.
  4. Heuristic evaluation – QualityEvaluator and MetricsCalculator compute weighted scores and traces that explain the decision path.
  5. Verification feedback – statuses from VerificationService and heuristic traces are attached to the node and propagated across connections.
  6. Persistence & response – updates are written to MemoryManager/VerificationMemory, and a structured MCP response is returned with a timeline of reasoning steps.

Each step is logged with structured metadata so you can visualize the reasoning fabric, audit decisions, and replay sessions deterministically.

Installation

Smart-Thinking ships as an npm package compatible with Windows, macOS, and Linux.

Global install (recommended)

Terminal
npm install -g smart-thinking-mcp

Run with npx

Terminal
npx -y smart-thinking-mcp

From source

bash
git clone https://github.com/Leghis/Smart-Thinking.git
cd Smart-Thinking
npm install
npm run build
npm link

Need platform-specific configuration details? See GUIDE_INSTALLATION.md for step-by-step instructions covering Windows, macOS, Linux, and Claude Desktop integration.

Quick Tour

  • smart-thinking-mcp — start the MCP server (globally installed package).
  • npx -y smart-thinking-mcp — launch without a global install.
  • npm run start — execute the built server from source.
  • npm run demo:session — run the built-in CLI walkthrough that feeds sample thoughts through the reasoning pipeline and prints the resulting timeline.

The demo script showcases how the orchestrator adds nodes, evaluates heuristics, and records verification feedback step by step.

MCP Client Compatibility

Smart-Thinking is validated across the most popular MCP clients and operating systems. Use the new connector mode (--mode=connector or SMART_THINKING_MODE=connector) when a client only accepts the search and fetch tools required by ChatGPT connectors.1

ClientTransportNotes
ChatGPT Connectors & Deep ResearchHTTP + SSEDeploy with SMART_THINKING_MODE=connector node build/index.js --transport=http --host 0.0.0.0 --port 8000. Point ChatGPT to https://<host>/sse and keep only search/fetch enabled, aligning with OpenAI’s remote MCP guidance.1
OpenAI Codex CLI & Agents SDKStreamable HTTP / SSEConfigure the Codex agent with http://localhost:3000/mcp or http://localhost:3000/sse and set SMART_THINKING_MODE=connector when only knowledge retrieval is needed.2
Claude Desktop / Claude CodestdioAdd "command": "smart-thinking-mcp" (or an npx command) to claude_desktop_config.json. Full toolset is available.3
Cursor IDEstdio / SSE / Streamable HTTPAdd the server to ~/.cursor/mcp.json or the project .cursor/mcp.json. Cursor supports prompts, roots, elicitation, and streaming.4
Cline (VS Code)stdioPlace the command in ~/Documents/Cline/MCP/smart-thinking.json or use the in-app marketplace to register the toolset.3
Kilo CodestdioRegister via the MCP marketplace and run the server locally; Smart-Thinking exposes deterministic tooling for autonomous edits.3

Need a minimal deployment footprint? Combine --transport=http --mode=connector with a reverse proxy (ngrok, fly.io, render, etc.) so remote clients can consume the server without exposing the full toolset.

For registry scanners and fallback metadata extraction, Smart-Thinking also exposes:

  • GET /.well-known/mcp/server-card.json

Configuration & Feature Flags

  • feature-flags.ts toggles advanced behaviours such as external integrations (disabled by default) and verbose tracing.
  • config.ts aligns platform-specific paths and verification thresholds.
  • memory-manager.ts and verification-memory.ts store session graphs, metrics, and calculation results using deterministic JSON snapshots.

Zero-API-Key Mode (Default)

  • Smart-Thinking runs fully in local deterministic mode without any API key.
  • External verification/search connectors are disabled by default in ToolIntegrator.
  • To explicitly enable external connectors, set:
server.ts
export SMART_THINKING_ENABLE_EXTERNAL_TOOLS=true
  • If external connectors are disabled (default), verification suggestions stay local (executePython, executeJavaScript) and external tool calls return a local fallback result.
  • FeatureFlags.externalLlmEnabled and FeatureFlags.externalEmbeddingEnabled remain disabled by default, so no remote LLM/embedding provider is required.

Development Workflow

Terminal
npm run build           # Compile TypeScript sources
npm run lint            # ESLint across src/
npm run test            # Jest test suite
npm run test:coverage   # Jest coverage report
npm run watch           # Incremental TypeScript compilation

See docs/modernisation-smart-thinking-v12-plan.md for the modernization checklist and rollout tracking.

Quality & Support

  • Deterministic heuristics and verification eliminate dependency on remote LLMs.
  • Latest validation (February 6, 2026): 80.47% statements, 81.59% lines, 84.34% functions, 63.48% branches.
  • CI recommendations: run npm run lint and npm run test:coverage before each release candidate.

Contributing

Contributions are welcome. Please open an issue or pull request describing the change, and run the quality checks above before submitting.

License

MIT

Footnotes

  1. OpenAI, “Building MCP servers for ChatGPT and API integrations,” highlights that connectors require search and fetch tools for remote use. (https://platform.openai.com/docs/mcp) ↩ ↩2

  2. OpenAI Agents SDK documentation on MCP transports (stdio, SSE, streamable HTTP). (https://openai.github.io/openai-agents-python/mcp/) ↩

  3. Model Context Protocol client catalogue listing Claude, Cline, Kilo Code, and other MCP-compatible applications. (https://modelcontextprotocol.io/clients) ↩ ↩2 ↩3

  4. Cursor documentation for configuring MCP servers via stdio/SSE/HTTP transports. (https://cursor.com/docs/context/mcp) ↩

Related MCP Servers

View all in Developer Tools View all alternatives
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    💻 Developer Tools7 views
    Compare vs Claude Task Master →
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    💻 Developer Tools0 views
    Compare vs Ai Netcafe →
  • Shadcn Ui Mcp Server logoShadcn Ui Mcp Server

    MCP server that gives AI assistants seamless access to shadcn/ui v4 components, blocks, demos, and metadata.

    💻 Developer Tools2 views
    Compare vs Shadcn Ui Mcp Server →
  • K
    Kwp Lab Rss Reader Mcp

    Track and browse RSS feeds with ease. Fetch the latest entries from any feed URL and extract full…

    💻 Developer Tools0 views
    Compare vs Kwp Lab Rss Reader Mcp →

Frequently Asked Questions about Leghis Smart Thinking

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "leghis-smart-thinking": { "command": "npx", "args": ["-y", "Leghis-smart-thinking"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewLeghis Smart Thinking AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/leghis-smart-thinking?style=directory)](https://allmcps.com/mcp/leghis-smart-thinking)
HTML Embed
<a href="https://allmcps.com/mcp/leghis-smart-thinking"><img src="https://allmcps.com/api/badge/leghis-smart-thinking?style=directory" alt="Leghis Smart Thinking on AllMCPs" /></a>

Technical Specs & Signals

Category💻Developer Tools
More technical detailsExpand ▾
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars34
GitHub Star CountTotal stargazers on GitHub representing community popularity (34 stars).
40Quality signal: Fair · 40/100How this signal is calculated ▾
Server availabilityNot measured

Not scored for repo-hosted servers — we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity4/15
Community engagement0/10

A guidance signal from public completeness & health data — not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

★ FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server →

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge — we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in 💻 Developer Tools →Best MCP servers for Developers →Alternatives to Leghis Smart Thinking →Install in Claude DesktopInstall in CursorInstall in VS Code