deepthinking-mcp 2.4.2 → 2.5.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 CHANGED
@@ -1,10 +1,10 @@
1
- # DeepThinking MCP v2.4
1
+ # DeepThinking MCP v2.5
2
2
 
3
- A comprehensive Model Context Protocol (MCP) server featuring **13 advanced reasoning modes** with intelligent mode recommendation for complex problem-solving, analysis, and decision-making.
3
+ A comprehensive Model Context Protocol (MCP) server featuring **13 advanced reasoning modes** with intelligent mode recommendation and visual export capabilities for complex problem-solving, analysis, and decision-making.
4
4
 
5
5
  ## Overview
6
6
 
7
- DeepThinking MCP v2.4 provides a complete toolkit for structured reasoning with 13 specialized modes and an intelligent recommendation system:
7
+ DeepThinking MCP v2.5 provides a complete toolkit for structured reasoning with 13 specialized modes, an intelligent recommendation system, and powerful visual export capabilities:
8
8
 
9
9
  ### Core Modes
10
10
  - **Sequential**: Iterative refinement with revision capabilities
@@ -166,6 +166,94 @@ For simple cases, use problem-type keywords:
166
166
  - `probability` → Bayesian mode
167
167
  - `what-if` → Counterfactual mode
168
168
 
169
+ ### Visual Exports (v2.5)
170
+
171
+ Export your reasoning sessions as visual diagrams in multiple formats for presentation, documentation, and analysis:
172
+
173
+ #### Supported Formats
174
+ - **Mermaid**: Flowcharts, Gantt charts, and graphs (compatible with GitHub, Markdown renderers, and documentation tools)
175
+ - **DOT**: Graphviz format for professional graph visualization and publication-quality diagrams
176
+ - **ASCII**: Plain text diagrams for terminal output, logs, and text-based documentation
177
+
178
+ #### Supported Modes
179
+ - **Causal Mode**: Export causal graphs showing cause-effect relationships with node types (causes, effects, mediators, confounders) and edge strengths
180
+ - **Temporal Mode**: Export timelines as Gantt charts showing events, intervals, and temporal relationships
181
+ - **Game Theory Mode**: Export game trees with strategies, decision nodes, and payoffs
182
+ - **Bayesian Mode**: Export Bayesian networks showing prior/posterior relationships and evidence flow
183
+
184
+ #### Visual Export Examples
185
+
186
+ **Causal Graph to Mermaid:**
187
+ ```json
188
+ {
189
+ "action": "export",
190
+ "sessionId": "session-id",
191
+ "exportFormat": "mermaid"
192
+ }
193
+ ```
194
+
195
+ Returns a Mermaid diagram:
196
+ ```mermaid
197
+ graph TB
198
+ marketing([Marketing Budget])
199
+ awareness[Brand Awareness]
200
+ revenue[[Revenue]]
201
+
202
+ marketing --> |0.80| awareness
203
+ awareness --> |0.90| revenue
204
+
205
+ style marketing fill:#a8d5ff
206
+ style revenue fill:#ffb3b3
207
+ ```
208
+
209
+ **Temporal Timeline to ASCII:**
210
+ ```json
211
+ {
212
+ "action": "export",
213
+ "sessionId": "session-id",
214
+ "exportFormat": "ascii"
215
+ }
216
+ ```
217
+
218
+ Returns a text timeline:
219
+ ```
220
+ Timeline: Project Timeline (days)
221
+
222
+ t= 0 ⦿ Project Start
223
+ Kickoff meeting
224
+
225
+ t= 5 ━ Development (duration: 10 days)
226
+ Code implementation
227
+
228
+ t= 20 ⦿ Launch
229
+ Product release
230
+ ```
231
+
232
+ **Game Tree to DOT:**
233
+ ```json
234
+ {
235
+ "action": "export",
236
+ "sessionId": "session-id",
237
+ "exportFormat": "dot"
238
+ }
239
+ ```
240
+
241
+ Returns Graphviz DOT format for rendering with `dot` or graph visualization tools.
242
+
243
+ #### Color Schemes
244
+ Visual exports support multiple color schemes:
245
+ - **default**: Vibrant colors for causes (blue), effects (red), mediators (yellow)
246
+ - **pastel**: Soft, pastel colors for presentations
247
+ - **monochrome**: No colors for print or accessibility
248
+
249
+ #### Integration
250
+ Visual exports work seamlessly with:
251
+ - GitHub Markdown (Mermaid diagrams render automatically)
252
+ - Documentation generators (MkDocs, Docusaurus, etc.)
253
+ - Graphviz tools (`dot`, `neato`, `fdp` for DOT format)
254
+ - Terminal output (ASCII format)
255
+ - Jupyter notebooks (via Mermaid magic)
256
+
169
257
 
170
258
  ## Tool Parameters
171
259
 
@@ -562,9 +650,13 @@ deepthinking-mcp/
562
650
  - ✅ Comprehensive test suite (77 tests)
563
651
  - ✅ Enhanced type safety
564
652
 
565
- ### Phase 3 (Future)
566
- - [ ] Export to LaTeX/Jupyter
567
- - [ ] Visualization (Mermaid diagrams for causal graphs)
653
+ ### Phase 3 (In Progress)
654
+ - Temporal reasoning mode (v2.1)
655
+ - Game theory mode (v2.2)
656
+ - ✅ Evidential reasoning mode (v2.3)
657
+ - ✅ Mode recommendation system (v2.4)
658
+ - ✅ Visual exports - Mermaid, DOT, ASCII (v2.5)
659
+ - ✅ Export to LaTeX/Jupyter/HTML (v2.5)
568
660
  - [ ] Math-MCP integration
569
661
  - [ ] Persistence layer
570
662
  - [ ] Collaborative thinking sessions