Labsco
BAM-DevCrew logo

MAXential Thinking MCP

β˜… 3

from BAM-DevCrew

Gives Claude explicit tools for reasoning: adding thoughts, branching to explore alternatives, revising earlier thinking, and navigating thought history. 11 focused tools designed for how Claude actually thinks

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedFreeQuick setup

MAXential Thinking MCP

A structured, persistent reasoning workspace for AI. Provides 20 tools for building thought chains, exploring alternatives through branching, revising earlier thinking, searching reasoning history, and persisting sessions across context window resets and server restarts.

AI's built-in reasoning is ephemeral β€” when context windows fill, thinking gets compressed or lost. Complex problems need exploration of multiple approaches, backtracking when paths fail, and the ability to resume where you left off. MAXential externalizes reasoning into a workspace that persists, branches, and survives.

Origin

Forked from Anthropic's sequential-thinking MCP server, which provided a single tool with 9 parameters. Its schema included branching parameters (branch_from_thought, branch_id) but had no tools to create, switch, or manage branches β€” the parameters were effectively inert.

MAXential replaced that single tool entirely and built 20 purpose-specific tools across three releases:

VersionWhat was built
v2.0Replaced the single tool with 11 focused tools: core thinking (think, revise, complete), full branch management (branch, switch_branch, list_branches, get_branch, close_branch, merge_branch), and navigation (get_thought, get_history)
v2.2Added 5 organization tools: tag, search, export, visualize, reset
v2.3Added 4 session persistence tools with SQLite storage: session_save, session_load, session_list, session_summary

Tools

Core Thinking

ToolWhat it does
thinkAdd a thought to the reasoning chain. Thoughts are numbered and persisted automatically.
reviseRevise a previous thought when earlier thinking was flawed or incomplete. The original is preserved with revision history.
completeMark the thinking chain complete with a final conclusion.
resetClear the current session and start fresh.

Branching

ToolWhat it does
branchCreate a new reasoning branch to explore an alternative path without losing the main thread.
switch_branchSwitch context to a different branch, or back to main.
list_branchesList all branches with their status and thought counts.
get_branchRetrieve complete details of a specific branch.
close_branchClose a branch with an optional conclusion.
merge_branchMerge insights from a branch back into main. Strategies: conclusion_only, full_integration, summary.

Navigation

ToolWhat it does
get_thoughtRetrieve a specific thought by its number.
get_historyGet thought history, optionally filtered by branch.

Organization

ToolWhat it does
tagAdd or remove semantic tags on a thought (e.g., hypothesis, evidence, decision, finding).
searchSearch thoughts by content text or by tags.
exportExport the thinking chain as markdown or JSON.
visualizeGenerate ASCII or Mermaid diagrams of the thought structure and branches.

Session Persistence

ToolWhat it does
session_saveName and describe the current session for later retrieval.
session_loadRestore a saved session β€” all thoughts, branches, and tags are loaded back into memory.
session_listBrowse available sessions, most recently updated first.
session_summaryGenerate a compressed summary of a session for token-efficient context loading.

Sessions are automatically persisted to SQLite as you work. Every think, branch, tag, and revise call writes through to disk in real time. Sessions survive server restarts, context window resets, and new conversations β€” pick up where you left off.

What the original provides vs. what MAXential provides

CapabilityAnthropic sequential-thinkingMAXential Thinking
Interface1 tool, 9 parameters20 focused tools
BranchingParameters in schema, no implementationFull lifecycle: create, switch, list, inspect, merge, close
RevisionNot supportedRevise any thought, original preserved with history
PersistenceNone β€” lost on server restartSQLite β€” survives restarts, context resets, new conversations
TaggingNot supportedSemantic tags on any thought
SearchNot supportedSearch by content or tags
ExportNot supportedMarkdown, JSON, Mermaid diagrams, ASCII visualization
NavigationNot supportedRetrieve any thought by number, browse filtered history

Browsing session history

Session data is stored in a standard SQLite database at .maxential/thinking.db. There are several ways to browse past reasoning sessions:

Through the tools themselves β€” ask AI to use session_list to browse sessions, session_load to restore one, or session_summary for a compressed overview. AI can format, search, and summarize session content conversationally.

With a SQLite browser β€” open .maxential/thinking.db in any SQLite viewer (VS Code/VSCodium extensions, DB Browser for SQLite, or similar). The schema is straightforward:

TableContains
sessionsSession ID, name, description, status, timestamps
thoughtsEvery thought with its number, content, branch, revision links
branchesBranch metadata, status, conclusions, merge history
tagsSemantic tags attached to thoughts

From the terminal:

sqlite3 .maxential/thinking.db "SELECT name, status, datetime(created_at/1000, 'unixepoch', 'localtime') as created FROM sessions ORDER BY updated_at DESC LIMIT 10;"

Development

npm install          # Install dependencies
npm run build        # Build TypeScript
npm run watch        # Watch mode
npm test             # Run tests with coverage
npm run test:unit    # Unit tests only
npm run test:integration  # Integration tests only