Smart-Thinking is a sophisticated MCP (Model Context Protocol) server providing a multi-dimensional, adaptive, and self-verifying reasoning framework for AI assistants like Claude. Unlike traditional linear reasoning approaches, it implements a graph-based architecture that enables complex connections between thoughts, offering more nuanced reasoning capabilities closer to human cognition.
# On macOS/Linux
npm install -g smart-thinking-mcp
# On Windows (using PowerShell or CMD)
npm install -g smart-thinking-mcp
To automatically install Smart-Thinking using Smithery:
npx -y @smithery/cli install @Leghis/smart-thinking --client claude
# On macOS/Linux
npx -y smart-thinking-mcp
# On Windows (less recommended, prefer global installation)
npx -y smart-thinking-mcp
# Clone the repository
git clone https://github.com/Leghis/Smart-Thinking.git
cd Smart-Thinking
# Install dependencies
npm install
# Build the project
npm run build
# Create a global npm link
npm link
Add this configuration to your ~/Library/Application Support/Claude/claude_desktop_config.json
file:
{
"mcpServers": {
"smart-thinking": {
"command": "smart-thinking-mcp"
}
}
}
OR using npx:
{
"mcpServers": {
"smart-thinking": {
"command": "npx",
"args": ["-y", "smart-thinking-mcp"]
}
}
}
Add this configuration to your %APPDATA%\Claude\claude_desktop_config.json
file:
{
"mcpServers": {
"smart-thinking": {
"command": "C:/Users/YourName/AppData/Roaming/npm/smart-thinking-mcp.cmd"
}
}
}
OR with the full path to Node.js (recommended for Windows):
{
"mcpServers": {
"smart-thinking": {
"command": "C:/Program Files/nodejs/node.exe",
"args": ["C:/Users/YourName/AppData/Roaming/npm/node_modules/smart-thinking-mcp/build/index.js"]
}
}
}
Important:
YourName
with your Windows username./
) in Windows paths, even though the OS uses backslashes (\
).By default, Smart-Thinking creates and uses a data
folder in its working directory. You can specify a custom directory using the SMART_THINKING_DATA_DIR
environment variable:
{
"mcpServers": {
"smart-thinking": {
"command": "smart-thinking-mcp",
"env": {
"SMART_THINKING_DATA_DIR": "/absolute/path/to/data"
}
}
}
}
Parameter | Type | Description |
---|---|---|
thought |
string | Content of the thought to analyze (required) |
thoughtType |
string | Type of thought ('regular', 'revision', 'meta', 'hypothesis', 'conclusion') |
connections |
array | Connections to other thoughts |
requestVerification |
boolean | Enable automatic verification |
containsCalculations |
boolean | Indicate if the thought contains calculations |
generateVisualization |
boolean | Generate a visualization of the thought graph |
suggestTools |
boolean | Suggest relevant MCP tools |
sessionId |
string | Session identifier for persistence |
Use the Smart-Thinking tool to analyze the advantages and disadvantages of renewable energy.
Use Smart-Thinking with verification (requestVerification=true) to evaluate the following claims about climate change.
Use Smart-Thinking with visualization (generateVisualization=true) to develop a multi-layered marketing strategy.
Use Smart-Thinking with a session identifier (sessionId="innovation-project") to analyze this complex optimization problem.
Smart-Thinking incorporates a sophisticated verification system that evaluates the reliability of information and calculations with 8 distinct verification statuses:
Status | Description |
---|---|
verified |
Information verified with confidence |
partially_verified |
Information partially verified |
unverified |
Information not verified |
contradicted |
Information contradicted by other sources |
inconclusive |
Verification inconclusive |
absence_of_information |
Absence of information on the subject |
uncertain |
Information uncertain due to contradictions |
contradictory |
Information inherently contradictory |
To verify that Smart-Thinking is working correctly:
# On macOS/Linux
smart-thinking-mcp
# On Windows
smart-thinking-mcp.cmd
You should see the server startup message.
If you encounter difficulties, check the Claude Desktop logs:
~/Library/Logs/Claude/mcp*.log
%USERPROFILE%\AppData\Local\Claude\logs\mcp*.log
~/.local/share/Claude/logs/mcp*.log
Problem | Solution |
---|---|
Smart-Thinking doesn't appear in Claude | Check paths in configuration, restart Claude Desktop |
File access errors | Check permissions of the data directory |
Connection issues on Windows | Use complete and absolute paths with forward slashes |
Errors with NVM on Windows | Use the full path to the active Node.js version |
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "smart-thinking" '{"command":"smart-thinking-mcp"}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"smart-thinking": {
"command": "smart-thinking-mcp"
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"smart-thinking": {
"command": "smart-thinking-mcp"
}
}
}
3. Restart Claude Desktop for the changes to take effect