deepthinking-mcp 7.4.0 ā 8.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -19
- package/dist/index.js +5043 -90
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
A comprehensive Model Context Protocol (MCP) server featuring **33 reasoning modes** (29 with dedicated thought types, 4 advanced runtime modes) including meta-reasoning for strategic oversight, with intelligent mode recommendation, taxonomy-based classification, enterprise security, and production-ready features for complex problem-solving, analysis, and decision-making.
|
|
8
8
|
|
|
9
|
-
> š **Latest Release**: v7.
|
|
9
|
+
> š **Latest Release**: v7.5.0 - See [CHANGELOG](CHANGELOG.md) for updates and improvements.
|
|
10
10
|
>
|
|
11
|
-
> š **New in v7.
|
|
11
|
+
> š **New in v7.5.0**: Phase 14 Accessible Reasoning Modes! All 29 modes with dedicated thought types are now accessible via MCP tools. 2 new tools: `deepthinking_engineering` and `deepthinking_academic`. Total: 12 focused tools.
|
|
12
|
+
>
|
|
13
|
+
> ⨠**v7.4.0**: Phase 13 Academic Research Modes for PhD students! Synthesis (literature review), Argumentation (Toulmin model), Critique (peer review), and Analysis (qualitative methods) modes.
|
|
12
14
|
>
|
|
13
15
|
> ⨠**v7.3.0**: Phase 12 Algorithmic Reasoning Mode with comprehensive CLRS coverage! 100+ named algorithms, complexity analysis, design patterns.
|
|
14
16
|
>
|
|
15
17
|
> ⨠**v7.2.0**: Phase 11 Historical Computing Extensions! Computability mode (Turing machines), Cryptanalytic mode (deciban evidence system), extended Game Theory (von Neumann).
|
|
16
|
-
>
|
|
17
|
-
> ⨠**v7.0.0**: Phase 8 Proof Decomposition System with native SVG export! Break proofs into atomic statements, detect gaps and implicit assumptions, track assumption chains.
|
|
18
18
|
|
|
19
19
|
## Table of Contents
|
|
20
20
|
|
|
@@ -86,20 +86,22 @@ Add to your MCP settings file:
|
|
|
86
86
|
|
|
87
87
|
### MCP Tool Usage
|
|
88
88
|
|
|
89
|
-
DeepThinking MCP provides
|
|
89
|
+
DeepThinking MCP provides 12 focused tools for different reasoning domains:
|
|
90
90
|
|
|
91
91
|
| Tool | Modes | Description |
|
|
92
92
|
|------|-------|-------------|
|
|
93
93
|
| `deepthinking_core` | inductive, deductive, abductive | Fundamental reasoning |
|
|
94
94
|
| `deepthinking_standard` | sequential, shannon, hybrid | Standard workflow modes |
|
|
95
|
-
| `
|
|
95
|
+
| `deepthinking_mathematics` | mathematics, physics, computability | Math/physics/computability |
|
|
96
96
|
| `deepthinking_temporal` | temporal | Time-based reasoning |
|
|
97
97
|
| `deepthinking_probabilistic` | bayesian, evidential | Probabilistic reasoning |
|
|
98
98
|
| `deepthinking_causal` | causal, counterfactual | Cause-effect analysis |
|
|
99
99
|
| `deepthinking_strategic` | gametheory, optimization | Strategic reasoning |
|
|
100
|
-
| `deepthinking_analytical` | analogical, firstprinciples, metareasoning | Analytical reasoning |
|
|
100
|
+
| `deepthinking_analytical` | analogical, firstprinciples, metareasoning, cryptanalytic | Analytical reasoning |
|
|
101
101
|
| `deepthinking_scientific` | scientificmethod, systemsthinking, formallogic | Scientific reasoning |
|
|
102
|
-
| `
|
|
102
|
+
| `deepthinking_engineering` | engineering, algorithmic | Engineering/algorithmic |
|
|
103
|
+
| `deepthinking_academic` | synthesis, argumentation, critique, analysis | Academic research |
|
|
104
|
+
| `deepthinking_session` | - | Session management |
|
|
103
105
|
|
|
104
106
|
### Example: Sequential Reasoning
|
|
105
107
|
|
|
@@ -164,8 +166,8 @@ The server supports 33 reasoning modes organized into categories:
|
|
|
164
166
|
- **Algorithmic (1)**: Algorithmic (CLRS) - *v7.3.0*
|
|
165
167
|
- **Academic Research (4)**: Synthesis, Argumentation, Critique, Analysis - *v7.4.0*
|
|
166
168
|
- **Advanced Runtime Modes (6)**: Metareasoning, Recursive, Modal, Stochastic, Constraint, Optimization
|
|
167
|
-
- **Fundamental Modes (
|
|
168
|
-
- **Experimental Modes (
|
|
169
|
+
- **Fundamental Modes (3)**: Inductive, Deductive, Abductive
|
|
170
|
+
- **Experimental Modes (12)**: Causal, Bayesian, Counterfactual, Analogical, Temporal, Game Theory (+ von Neumann extensions), Evidential, First Principles, Systems Thinking, Scientific Method, Formal Logic, Engineering
|
|
169
171
|
|
|
170
172
|
### Core Modes
|
|
171
173
|
|
|
@@ -211,14 +213,6 @@ mode: 'hybrid'
|
|
|
211
213
|
|
|
212
214
|
### Advanced Modes
|
|
213
215
|
|
|
214
|
-
#### Abductive
|
|
215
|
-
Generate and evaluate hypotheses to explain observations.
|
|
216
|
-
|
|
217
|
-
```typescript
|
|
218
|
-
mode: 'abductive'
|
|
219
|
-
// Use for: Debugging, root cause analysis, diagnostic reasoning
|
|
220
|
-
```
|
|
221
|
-
|
|
222
216
|
#### Causal
|
|
223
217
|
Build causal graphs, analyze interventions and effects.
|
|
224
218
|
|
|
@@ -381,6 +375,14 @@ mode: 'deductive'
|
|
|
381
375
|
// Use for: Logical proofs, applying rules, deriving conclusions
|
|
382
376
|
```
|
|
383
377
|
|
|
378
|
+
#### Abductive
|
|
379
|
+
Generate and evaluate hypotheses to explain observations.
|
|
380
|
+
|
|
381
|
+
```typescript
|
|
382
|
+
mode: 'abductive'
|
|
383
|
+
// Use for: Debugging, root cause analysis, diagnostic reasoning
|
|
384
|
+
```
|
|
385
|
+
|
|
384
386
|
### Historical Computing Modes (v7.2.0)
|
|
385
387
|
|
|
386
388
|
Tributes to Alan Turing and John von Neumann's foundational work.
|
|
@@ -490,7 +492,7 @@ mode: 'analysis'
|
|
|
490
492
|
|
|
491
493
|
```json
|
|
492
494
|
{
|
|
493
|
-
"tool": "
|
|
495
|
+
"tool": "deepthinking_mathematics",
|
|
494
496
|
"arguments": {
|
|
495
497
|
"mode": "mathematics",
|
|
496
498
|
"thought": "Analyzing the proof that n² is even when n is even",
|