throughline
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@throughlineI want to renamegetUserById. Show me every caller and flag the risky ones."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Throughline
Give Claude complete understanding of your software project.
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?
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.
Related MCP server: code-index
What you can ask
You ask | What happens |
"Where is payment handled?" | Expands the concept into the mechanisms code actually uses — |
"What calls | 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 | 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:
npm install
npm run grammars # vendor tree-sitter WASM grammars
npm run build
npm run smoke -- . # watch it index itselfRequires Claude Desktop on macOS or Windows. Node ships with Claude Desktop, so there's nothing else to install.
First run
"List my workspaces" — confirms the directory was granted.
"Index this project" — a 5,000-file repository takes 20–60 seconds.
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.
stdoutcarries only JSON-RPC; all diagnostics go tostderr.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:
References resolve by name, not by types. No type checker is involved. Edges are labelled
exactorheuristic; heuristic ones can be wrong.Dynamic dispatch is invisible. Reflection, dependency injection, string-keyed routing and event buses produce no edges. "Dead code" findings are candidates, not verdicts.
Blame is approximate. Line attribution is reconstructed by walking history and doesn't track code movement the way
git blame -Mdoes.Four languages parse as text only — SQL, Markdown, Dockerfile, Terraform.
Large repositories are bounded, not unbounded. The default file limit is 50,000; hitting it produces a warning, not a silent truncation.
Contributing
docs/CONTRIBUTING.md. Adding a language is usually a
grammar, a .scm query file and a registry row — the pipeline shouldn't need to
change.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceAn MCP server that provides dynamic codebase context to Claude Code through tools like hybrid search, recent changes, and symbol definitions, enhancing AI-assisted coding with local RAG.Last updated8MIT
- Alicense-qualityDmaintenanceA local, SQLite-backed code index for Claude Code, exposed over MCP, enabling targeted code retrieval without external APIs.Last updated1MIT
- Alicense-qualityDmaintenanceCode intelligence MCP server for Claude Code providing multi-project code graph, semantic search, session history, knowledge base, and web search.Last updated3MIT
- Alicense-qualityDmaintenanceInstant codebase knowledge graph MCP server. It auto-detects languages, indexes functions, classes, and call chains, enabling LLMs to navigate code in milliseconds.Last updatedMIT
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/devznsh/throughline'
If you have feedback or need assistance with the MCP directory API, please join our Discord server