# Long Reasoning MCP Server
[](https://www.npmjs.com/package/long-reasoning-mcp)
[](https://github.com/harshpreet931/longReasoningMCP)
[](https://opensource.org/licenses/MIT)
A production-ready Model Context Protocol (MCP) server implementing **Chain of Thought** methodology for super long, complex reasoning tasks.
Extended Sequential Thinking.
**Links:**
- [npm Package](https://www.npmjs.com/package/long-reasoning-mcp)
- [GitHub Repository](https://github.com/harshpreet931/longReasoningMCP)
## Installation
```bash
npm install -g long-reasoning-mcp
```
Or use directly with npx (no installation required):
```bash
npx long-reasoning-mcp
```
## Configuration
### Configure Your AI Client with MCP
**Using npx (recommended):**
```json
{
"mcpServers": {
"long-reasoning": {
"command": "npx",
"args": [
"-y",
"long-reasoning-mcp"
]
}
}
}
```
**Using local installation:**
```json
{
"mcpServers": {
"long-reasoning": {
"command": "node",
"args": [
"/path/to/longThinking/dist/index.js"
]
}
}
}
```
Restart your AI client and the `longreasoning` tool will be available!