Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Throughline
Throughline logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 7:34:58 PM

Throughline

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Give Claude complete understanding of your software project.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "throughline-2": {
      "url": "https://img.shields.io/badge/license-MIT-3b82f6?style=flat-square)](LICENSE"
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Throughline logo

Throughline

Give Claude complete understanding of your software project.

License Node Platform MCP CI


Point it at a repository on your machine. It reads every file, extracts symbols with tree-sitter, resolves imports into a call graph, ingests git history, and exposes the whole thing to Claude as precise retrieval tools.

Then you can ask the questions you actually have β€” "where is rate limiting handled?", "what breaks if I change this?" β€” and get real file paths and line numbers instead of plausible-sounding guesses.

Everything runs locally. This extension makes no network requests of any kind.

What it looks like

You: where does indexing decide a file has changed?

server.ts
3 matches for "where does indexing decide a file has changed"

### src/core/services/index-repository.ts:171-186
method IndexingService.index β€” src/core/services/index-repository.ts:171-186
why: text match; 15 inbound references; 6 matches in this file

      const hash = contentHash(buffer);
      const previous = known.get(scanned.relPath);
      ...
      if (mode === 'incremental' && previous === hash) {
        unchanged.push(scanned.relPath);
        continue;
      }

That why: line is the point. Results are ranked by how structurally central they are β€” inbound references, export status, architectural role β€” not by how many times a word appears. A file that mentions caching loses to the one that implements it.

What you can ask

You askWhat happens
"Where is payment handled?"Expands the concept into the mechanisms code actually uses β€” stripe, charge, invoice, checkout β€” then ranks by structural importance
"What calls validateToken?"Every call site, with heuristic matches labelled as such so you know what to double-check before a rename
"What happens when a request hits /login?"Traces the call path from route handler to core logic, rendered as a sequence diagram
"Get me oriented in this repo"Stack, entry points, layer structure, hotspots, existing docs β€” every claim cited
"Is anything dead here?"Unreferenced non-exported symbols, with an explicit warning about what static analysis cannot see
"Draft an onboarding guide"Assembles one from the index; a separate tool writes it, and only with your explicit approval

Eighteen tools in total β€” see docs/TOOLS.md.

Supported languages

Full symbol extraction β€” TypeScript Β· TSX Β· JavaScript Β· JSX Β· Python Β· Go Β· Java Β· Kotlin Β· C# Β· Rust Β· C Β· C++ Β· YAML Β· JSON

Text-searchable only β€” SQL Β· Markdown Β· Dockerfile Β· Terraform (grammars not yet vendored; files are indexed and searchable, but no symbols are extracted)

Anything else is still catalogued and searchable as text.

Install

From a release β€” download throughline.mcpb, then in Claude Desktop go to Settings β†’ Extensions β†’ Advanced settings β†’ Install Extension. You'll be asked which directories the connector may read.

From source β€” see docs/INSTALL.md:

Terminal
npm install
npm run grammars     # vendor tree-sitter WASM grammars
npm run build
npm run smoke -- .   # watch it index itself

Requires Claude Desktop on macOS or Windows. Node ships with Claude Desktop, so there's nothing else to install.

First run

  1. "List my workspaces" β€” confirms the directory was granted.
  2. "Index this project" β€” a 5,000-file repository takes 20–60 seconds.
  3. Ask anything. Later, "refresh the index" picks up your edits in about a second.

Example prompts

  • "Index this repo, then explain how authentication works. Cite files."
  • "I want to rename getUserById. Show me every caller and flag the risky ones."
  • "What are the entry points in this service?"
  • "Draw me the dependency graph for src/billing."
  • "Which files change most often and are the most complex?"
  • "Draft an architecture overview β€” don't write it to disk yet."

How it works

A two-pass pipeline. Pass 1 parses every file with tree-sitter in parallel, with no shared state. Pass 2 has the global view and resolves names into a symbol table, import graph and call graph.

Search fuses a BM25 lexical ranker with a symbol-name ranker using reciprocal rank fusion, then re-ranks by graph centrality. RRF uses rank position only, so rankers with incomparable score scales compose without calibration β€” and the graph re-rank is what makes a conceptual query find the implementation rather than the twelve files that merely mention it.

The design rationale, including eleven decisions and what each traded away, is in docs/ARCHITECTURE.md.


Privacy Policy

Effective date: 2026-01-01 Β· Last updated: 2026-01-01

Throughline is a local desktop extension. It runs entirely on your computer as a child process of Claude Desktop.

What the connector accesses

  • Files inside the directories you explicitly grant during installation. Nothing outside those directories is read. Symlinks resolving outside a granted directory are refused.
  • Git metadata in those directories: commit subjects, author names and emails, timestamps, and which files each commit touched. Commit message bodies are not stored.
  • Nothing else. No environment variables beyond its own configuration, no browser data, no files elsewhere on your system, no other applications.

What the connector stores, and where

An index is written to .throughline/index.db inside each project directory you granted. It contains file paths, symbol names and signatures, documentation comments, import relationships, call edges, git metadata, and excerpts of your source code used for search.

The index never leaves your machine. Deleting the .throughline directory deletes it completely. Uninstalling the extension leaves it in place; remove the directory yourself if you want it gone.

What the connector transmits

The extension makes no network requests of any kind. No telemetry, no analytics, no crash reporting, no update check, no remote API. This is structural rather than a promise: it opens no sockets, and git operations read the local object database directly rather than contacting a remote.

The boundary is worth stating plainly. When Claude calls a tool, the tool's response β€” code snippets, file paths, symbol names from your project β€” is returned to Claude and therefore processed by Anthropic under Anthropic's Privacy Policy, exactly as if you had pasted that code into a conversation yourself. The connector controls what leaves your machine only insofar as it controls what it returns; it returns scoped, bounded excerpts rather than whole repositories, and redacts secrets first. If you don't want a directory's contents reaching Claude, don't grant that directory.

Secret redaction

Before any content is stored or returned, it is scanned for credential patterns β€” API keys, tokens, private keys, connection strings, passwords in assignments β€” and matches are replaced with [REDACTED:kind]. Redaction happens at write time, so secrets are never persisted in the index either.

This is a safety net, not a guarantee. Pattern matching cannot catch every secret. Don't grant access to directories containing credentials you wouldn't want in a conversation, and use security.denyGlobs to exclude sensitive paths.

Writing to your files

Read-only by default. The single tool that can write β€” write_documentation β€” requires both that you enable writes in settings and that you confirm the specific write after seeing a preview of the exact content. It writes only inside granted directories, only to a path you name.

Data sharing, retention, and contact

No data is shared with anyone. There is no server, no account, no third party. Retention is entirely under your control: the index lives in your project directory and is deleted when you delete it. This is a developer tool not directed at children and collects no personal information from anyone.

Questions or concerns: open an issue.

The full policy, including the exact redaction patterns and the data model, is in docs/PRIVACY.md.


Security

  • Read-only by default; writes are double-gated and preview-first.
  • No shell execution, ever. Git is read in-process rather than by invoking git.
  • Path containment is enforced against resolved real paths, so symlinks cannot escape a granted directory.
  • stdout carries only JSON-RPC; all diagnostics go to stderr.
  • A config file inside a repository cannot widen the connector's access β€” granted directories come from the install dialog and nothing else can add to them.

Threat model: docs/SECURITY.md.

Configuration

Optional. Drop a connector.config.json in your project root to tune excludes, limits and search behaviour β€” see connector.config.example.json and docs/CONFIGURATION.md.

Limitations

Worth knowing before you rely on it:

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • Project Context Connector logoProject Context Connector

    Give Claude complete understanding of your software project.

    πŸ’» Developer Tools0 views
    Compare vs Project Context Connector β†’
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Labelhead Artist Momentum logoLabelhead Artist Momentum

    Trending hip-hop artist momentum scores across four cultural dimensions.

    πŸ’» Developer Tools0 views
    Compare vs Labelhead Artist Momentum β†’
  • Openflowkit MCP logoOpenflowkit MCP

    Local-first OpenFlowKit diagramming tools for Claude, Cursor, Windsurf & other MCP clients.

    πŸ’» Developer Tools0 views
    Compare vs Openflowkit MCP β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Throughline

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "throughline": { "command": "npx", "args": ["-y", "Throughline"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewThroughline AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/throughline-2?style=directory)](https://allmcps.com/mcp/throughline-2)
HTML Embed
<a href="https://allmcps.com/mcp/throughline-2"><img src="https://allmcps.com/api/badge/throughline-2?style=directory" alt="Throughline on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSSE (Remote)
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
35Quality signal: Fair Β· 35/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools15/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Throughline β†’Install in Claude DesktopInstall in CursorInstall in VS Code