MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQChangelog

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace Β© 2026. All rights reserved.

Back to Browse

Threadmap MCP Server

by Advertflair
Developer ToolsLow Risk8.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Conversation drift visualization for Claude. Color-coded inflection points and one-click forking.

About

Conversation drift visualization for Claude. Color-coded inflection points and one-click forking.

Security Report

8.0
Low Risk8.0Low Risk

Valid MCP server (2 strong, 4 medium validity signals). 2 known CVEs in dependencies (0 critical, 2 high severity) Package registry verified. Imported from the Official MCP Registry.

5 files analyzed Β· 3 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

clipboard

Check that this permission is expected for this type of plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-advertflair-threadmap-mcp": {
      "args": [
        "-y",
        "threadmap-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

πŸ—ΊοΈ ThreadMap MCP for Claude

Conversation drift visualization and forking for Claude.

Stop losing your original intent. See exactly where your conversation drifted. Fork from any point and pick up with clean context.


See it in action

Color dots on every message β€” live drift tracking:

ThreadMap drift dots demo

Timeline panel with fork buttons at every inflection point:

ThreadMap timeline panel


Two ways to use ThreadMap

MCP ServerChrome Extension
Works inClaude Code (terminal)claude.ai (browser)
Installclaude mcp add threadmap npx threadmap-mcpLoad unpacked from chrome-extension/ folder
What you get7 tools β€” track, timeline, fork, branchColor dots on every message, timeline panel, one-click fork
Best forDevelopers building with Claude CodeAnyone using claude.ai daily

Both are in this repo. Use one or both.


Chrome Extension β€” Visual dots in claude.ai

The Chrome extension injects ThreadMap directly into the claude.ai interface. No config. Just install and open Claude.

Install (2 minutes)

1. Clone or download this repo
2. Open Chrome β†’ chrome://extensions
3. Enable Developer mode (top right toggle)
4. Click Load unpacked β†’ select the chrome-extension folder
5. Open any Claude conversation β€” ThreadMap activates automatically

What you see

  • Color dot next to every message showing drift % from your original intent
  • Sticky bar at the top with live drift status and message count
  • β†Ί rescan β€” loads all messages from long previous conversations
  • timeline β€” full conversation map, click any row to jump to that message
  • β‘‚ fork β€” opens a new Claude chat with full context pre-loaded in the input

How forking works

  1. Click β‘‚ fork in the timeline or next to any message bubble
  2. A new claude.ai tab opens automatically
  3. The full context (origin intent + all messages up to that point) is pasted into the input
  4. Review and hit Send β€” Claude picks up from the clean version

Chrome extension files

chrome-extension/
β”œβ”€β”€ manifest.json     β€” Extension config (Manifest v3)
β”œβ”€β”€ content.js        β€” Core drift engine + DOM injection
β”œβ”€β”€ threadmap.css     β€” All injected styles
β”œβ”€β”€ popup.html        β€” Extension popup with color legend
β”œβ”€β”€ icon16.png        β€” Icons
β”œβ”€β”€ icon48.png
└── icon128.png

Heads up: The extension uses Developer mode (load unpacked). A Chrome Web Store version is on the roadmap.


MCP Server β€” Claude Code integration

The MCP server adds 7 tools to Claude Code for programmatic drift tracking.

Install

claude mcp add threadmap npx threadmap-mcp

Or manually add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "threadmap": {
      "command": "npx",
      "args": ["threadmap-mcp"]
    }
  }
}

Quick start

threadmap_track(sessionId="myproject", role="user", content="build me a login system with JWT auth")
β†’ πŸ”΅ Blue β€” Drift: 0% β€” Origin intent set

threadmap_track(sessionId="myproject", role="user", content="the refresh token keeps expiring after 30 seconds")
β†’ 🟠 Orange β€” Drift: 63% β€” ⚑ INFLECTION POINT detected

threadmap_timeline(sessionId="myproject")
β†’ Full color-coded map of all messages with fork instructions

threadmap_fork(sessionId="myproject", messageIndex=6, branchName="jwt-debug")
β†’ 🌿 Branch created β€” clean context from messages 1–7

All 7 tools

ToolWhat it does
threadmap_trackTrack a message, get drift score + color
threadmap_timelineFull color-coded conversation map
threadmap_forkFork from any message index
threadmap_branch_contextClean context packet for any branch
threadmap_statusQuick current drift check
threadmap_resetArchive thread, start fresh
threadmap_legendShow color reference guide

Color system

ColorDriftMeaning
πŸ”΅ Blue0–15%On track β€” core intent
🟒 Green16–35%Productive expansion
🟑 Yellow36–55%Adjacent drift
🟠 Orange56–72%Inflection point β€” meaningful pivot
πŸ”΄ Red73–88%Full context break
🟣 Purple89–95%Meta β€” talking about the conversation
βšͺ White96–100%Resolution

Orange and Red = fork candidates. The conversation has left your original intent behind.


Real-world use cases

Claude Code β€” architecture integrity Track every message while building. Orange = scope creep. Fork before the drift gets worse. Architecture decisions from the first 10 messages stay clean.

Long previous conversations Click β†Ί rescan in the Chrome extension. ThreadMap scrolls to the top, loads all messages, scans every one, then returns you to the bottom β€” all dots appear.

Team handoffs Use threadmap_branch_context to extract a clean summary of what was decided. Paste it into a new session β€” no scrolling through 200 messages.


Why open source?

Non-linear conversation navigation is the missing primitive for AI-native work. Right now Claude conversations are books with no table of contents, no chapters, no bookmarks.

ThreadMap is the table of contents. If this becomes the standard, it travels across Claude, GPT, Gemini, anything. Nobody owns it. Everybody benefits.


Roadmap

  • Local embedding model (MiniLM) for richer semantic scoring
  • Chrome extension on Chrome Web Store (no developer mode required)
  • Cross-session persistence (SQLite mode)
  • Visual timeline export (SVG/HTML)
  • GPT / Gemini compatibility

Contributing

MIT licensed. See CONTRIBUTING.md.

git clone https://github.com/Advertflair/threadmap-mcp
cd threadmap-mcp
npm install
npm run build

PRs welcome especially for: better drift scoring, Chrome extension improvements, and other AI platform support.


License

MIT β€” see LICENSE


Built by Advertflair. Open source. Ship it.

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source Codenpm Package

Details

Published April 10, 2026
Version 1.0.0
0 installs
Local Plugin

More Developer Tools MCP Servers

Git

Free

by Modelcontextprotocol Β· Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
4
Installs
6.5
Security
No ratings yet
Local

Toleno

Free

by Toleno Β· Developer Tools

Toleno Network MCP Server β€” Manage your Toleno mining account with Claude AI using natural language.

114
Stars
409
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace Β· Developer Tools

Create, build, and publish Python MCP servers to PyPI β€” conversationally.

-
Stars
56
Installs
10.0
Security
5.0
Local

MarkItDown

Free

by Microsoft Β· Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

116.1K
Stars
15
Installs
6.0
Security
5.0
Local

mcp-creator-typescript

Free

by mcp-marketplace Β· Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm β€” conversationally

-
Stars
14
Installs
10.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace Β· Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
13
Installs
10.0
Security
No ratings yet
Local