Conversation drift visualization for Claude. Color-coded inflection points and one-click forking.
{
"mcpServers": {
"io-github-advertflair-threadmap-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Conversation drift visualization for Claude. Color-coded inflection points and one-click forking.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 1 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for io.github.Advertflair/threadmap-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
Color dots on every message — live drift tracking:

Timeline panel with fork buttons at every inflection point:

| MCP Server | Chrome Extension | |
|---|---|---|
| Works in | Claude Code (terminal) | claude.ai (browser) |
| Install | claude mcp add threadmap npx threadmap-mcp | Load unpacked from chrome-extension/ folder |
| What you get | 7 tools — track, timeline, fork, branch | Color dots on every message, timeline panel, one-click fork |
| Best for | Developers building with Claude Code | Anyone using claude.ai daily |
Both are in this repo. Use one or both.
The Chrome extension injects ThreadMap directly into the claude.ai interface. No config. Just install and open Claude.
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
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.
The MCP server adds 7 tools to Claude Code for programmatic drift tracking.
claude mcp add threadmap npx threadmap-mcp
Or manually add to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"threadmap": {
"command": "npx",
"args": ["threadmap-mcp"]
}
}
}
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
| Tool | What it does |
|---|---|
threadmap_track | Track a message, get drift score + color |
threadmap_timeline | Full color-coded conversation map |
threadmap_fork | Fork from any message index |
threadmap_branch_context | Clean context packet for any branch |
threadmap_status | Quick current drift check |
threadmap_reset | Archive thread, start fresh |
threadmap_legend | Show color reference guide |