Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Sens

БесплатноНе проверен

Provides MCP tools for Claude Code to query a project's codebase via a compact index, reducing token usage and context bloat by enabling symbol lookup, usage tr

GitHubEmbed

Описание

Provides MCP tools for Claude Code to query a project's codebase via a compact index, reducing token usage and context bloat by enabling symbol lookup, usage tracking, and dead-code detection.

README

Sens — a project index for Claude Code

npm version License: MIT Built for Claude Code MCP server TypeScript Status

Let the model query your codebase instead of reading it all.
Fewer tokens, cleaner context, and a heads-up when code already exists or is dead.

WORKS WITH

Claude Code      Codex      GitHub Copilot      Cursor

Windsurf Gemini CLI Zed Cline Continue

Claude Code  ·  Codex  ·  GitHub Copilot  ·  Cursor  ·  Windsurf  ·  Gemini CLI  ·  Zed  ·  Cline  ·  Continue  ·  any MCP client


Why Sens?

If you use Claude Code on a subscription, your pain isn't a per-token bill — it's the usage limit and the context window filling up. Every time the agent opens 20 files just to orient itself, it burns your quota and bloats the context (which then compacts and quietly loses memory).

Sens keeps a compact index of your project and serves it to Claude — through a hook that answers the model's searches before they run, a skill it loads on demand, or an MCP server — so the model asks focused questions instead of reading everything:

"where is login?" · "who uses it?" · "does something like this already exist?" · "what's dead code here?"

One engine, two payoffs:

  • 🪙 Fewer tokens / cleaner context → your subscription lasts longer and long sessions stay sharp.
  • 🧹 Cleaner code → reuse what already exists instead of duplicating, and surface dead code.

[!NOTE] Sens is not a "write-less" rules engine (that's what ponytail does well). Sens is the missing piece underneath: the project knowledge that makes "reuse what exists" actually work. They're complementary.

Contents

Quick start

Install Sens and set it up in your project:

npm i -g sens-mcp
cd your-project
sens init

sens init builds the index, installs a skill so Claude knows when to query Sens, wires a hook that answers Claude's searches before they run (when the model is about to grep for a symbol, Sens returns it and every use directly; a file read gets the outline injected first), and puts your working rules in front of the model at the start of every session. Nothing else to start: just work normally and ask Claude naturally ("any dead code? check with sens").

Using another agent? sens init --agent codex (or copilot, cursor, all) writes the same guide + rules into that agent's instructions file (AGENTS.md, .github/copilot-instructions.md, .cursorrules) so it drives the sens CLI too.

Prefer MCP? (or a host that only speaks MCP)

Add Sens as an MCP server instead. In your project's .mcp.json (or Claude Code's MCP config):

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

Or register it once for every project:

claude mcp add sens -s user -- npx -y sens-mcp mcp

Claude Code launches Sens on demand — no per-project install, no manual server to run.

What Claude gets

The same set of operations, whether Claude runs them as sens commands (driven by the skill/hook) or as MCP tools:

Operation What it does Replaces
project_map A one-screen map of the repo with each file's exports Reading many files to orient
find_symbol Where a symbol is defined (file:line + signature) grep
who_uses Every place a symbol is used grep + reads
file_outline A file's signatures, without its bodies Reading the whole file
already_exists Whether something matching keywords already exists Duplicating by accident
explain_symbol A symbol's callers and callees (call-graph neighborhood) Reading files to trace a function
symbol_path The shortest chain of calls connecting two symbols Manually following the call chain
dead_code Unused symbols / exports (candidates)
file_dependencies What a file imports and what imports it (import graph) Grepping for imports across the project

Working rules

Sens's MCP server also hands Claude a short set of working rules it follows when writing or changing code — reuse what exists instead of duplicating, keep code minimal but maintainable, and leave nothing orphaned — each tied to the tool that lets it verify the rule (already_exists/find_symbol before writing, dead_code before finishing, who_uses before a rename). The rules are composable modules (search-first, minimal, no-orphans, optimization, plus opt-in error-handling and testing). sens init wires a SessionStart hook that injects the active modules at the start of every session, so they apply automatically. Enable/disable modules or add your own in sens.config.json, from the dashboard's "Working rules" panel, or see their state with sens rules --list. Run sens rules to print the active set, or sens rules --write to drop a SENS_RULES.md you can reference from your CLAUDE.md / AGENTS.md.

Slash commands

Sens also registers prompts, so it shows up in Claude Code's / menu:

Command Does
/sens map Compact project map
/sens dead-code List dead-code candidates
/sens find <name> Locate a symbol
/sens exists <keywords> Check for existing code before writing
/sens rules Load the working rules and follow them
/sens dashboard Open the web dashboard (graph)

CLI

You can also drive Sens yourself:

npx sens-mcp init           # set up here (--agent codex|copilot|cursor|all for other agents)
npx sens-mcp index          # build/update the index (cached by file mtime)
npx sens-mcp map [subdir]   # compact project map
npx sens-mcp find <name>    # where a symbol is defined
npx sens-mcp who <name>     # where a symbol is used (--full for every call site)
npx sens-mcp explain <name> # a symbol's callers and callees (call graph)
npx sens-mcp path <a> <b>   # shortest chain of calls between two symbols
npx sens-mcp outline <file> # a file's signatures, no bodies
npx sens-mcp exists <kw...> # does something like this already exist?
npx sens-mcp dead-code      # unused symbols (candidates)
npx sens-mcp deps <file>    # what a file imports and what imports it
npx sens-mcp report         # self-contained HTML report → .sens/report.html
npx sens-mcp dashboard      # interactive web dashboard
npx sens-mcp rules          # print active rules (--list for module states, --write to save)
npx sens-mcp skill          # print the Claude Code skill (--write to install it)
npx sens-mcp usage          # which Sens tools the model has actually called

Installed globally (npm i -g sens-mcp) the command is just sens <command>.

Every command shares one modern look — a braille spinner while indexing, a consistent sens › <command> header, and color that means something (green ok, red error, yellow warning, gray for paths/counts/timings). Errors stay a single clear line; add --verbose for the full stack trace. This styling is terminal-only: what the model reads over the MCP server or the hook stays plain text, so nothing here bloats its context.

Dashboard

sens dashboard starts a local web UI (default http://localhost:4319):

  • an interactive graph of your project — files as nodes, imports as edges (drag, click a node to see its symbols);
  • live stats and a clickable dead-code list;
  • a symbol search;
  • a Working rules panel to toggle rule modules on/off and add your own;
  • a one-click Connect to Claude Code (writes .mcp.json) and a Rebuild index button.
npx sens-mcp dashboard --root . --port 4319   # --no-open to skip opening the browser
npx sens-mcp dashboard --host                 # also expose on your LAN (prints a Network URL + QR)
npx sens-mcp dashboard --tunnel               # also get a public URL via cloudflared/ngrok if installed

--host / --tunnel are opt-in and guarded by an access token in the printed link, because the dashboard can write your project's config. By default it binds to localhost only.

Sens dashboard — project dependency graph (light theme)

Sens dashboard — project dependency graph (dark theme)

Nodes are files; blue = has exports, gray = internal, red = has dead code. Light & dark themes, multiple graph layouts (network, chord, arc, treemap…).

Does it actually help?

A reproducible benchmark suite (bench/run.ts) measures this on Sens's own repo and fixtures — run it yourself with npm run bench. No estimates, no anecdotes: every number below comes straight from that script.

Metric Result How it's measured
Size to orient in a project ~97% fewer characters project_map output vs. concatenating every file in src/
Re-index when nothing changed ~100\u2013125\u00d7 faster (varies by run/hardware) median cold build (force: true) vs. median cached read, 5 runs each
Duplication caught before writing already_exists("subtract two numbers") surfaces the existing subtract
Dead code false positives 0 out of 8 labeled symbols against fixtures with known used / dead / object-shorthand-referenced symbols

Re-run npm run bench on your own machine or project to reproduce (or challenge) these numbers. Re-index speed varies with CPU and disk, so treat it as a range, not a fixed multiplier.

How it works

Pluggable per-language parsers behind one language-agnostic index. Sens walks your source (respecting .gitignore), extracts top-level symbols with compact signatures, resolves references, and caches the result in .sens/index.json — only rebuilt when file mtimes change; a schema version invalidates stale caches across upgrades.

Languages:

  • JavaScript / TypeScript (.ts .tsx .js .jsx .mts .cts) via ts-morph — cross-file references are resolved semantically (it follows your imports).
  • Python, Go, Rust, Java, C#, C, C++, PHP, Ruby, Kotlin via tree-sitter — functions, classes/structs, methods, constants, and an import graph per file.

Everything lands in one language-agnostic index, so a mixed repo (e.g. a TS frontend + a Python or Go backend) is indexed as a single project. For the tree-sitter languages, cross-file references are resolved by name — the best a syntax-only parser can do without whole-program type inference — so who_uses / dead-code are slightly more approximate than for JS/TS: they over-count rather than miss, which keeps dead-code candidates conservative. Adding a language is a small self-contained parser (src/indexer/languages/); more are on the roadmap.

Configuration

Optional sens.config.json at your project root:

{
  "ignore": ["**/generated/**"],
  "entryPoints": ["src/public-api.ts"]
}
  • ignore — extra globs to skip (on top of .gitignore, node_modules, dist).
  • entryPoints — files whose exports are your public API, so they're never flagged as dead. **/index.* files are treated as entry points by default.

Dead code — read this

Dead-code results are candidates, not certainties — but they're now ranked so you know how far to trust each one. Sens reports everything unreachable from an entry point (including dead islands — clusters that only reference each other — and whole dead files), tiered by confidence:

  • 🟢 HIGH — internal, no references anywhere. Safe to remove after a glance.
  • 🟡 MEDIUM — internal, reached only from other dead code. Remove the cluster together.
  • 🔴 LOW — an export (maybe public API) or a method (maybe dynamic dispatch). Verify first.

Before reporting, Sens also greps your non-source files (JSON/config/templates) and flags any candidate whose name shows up there as a possible reflective use. Entry points are auto-detected (package.json across a monorepo; main/init/framework annotations per language), and test files count as usage but are never reported as dead. It still can't see every dynamic/reflective path, so: verify LOW candidates before deleting.

Roadmap

  • Enforcement hook (warn/block when an edit introduces dead code or a duplicate)
  • Semantic already_exists (embeddings) + near-duplicate detection
  • Per-language dead-code accuracy across all tree-sitter languages
  • Vue/Svelte SFC support; more languages via tree-sitter
  • Dashboard: symbol-level graph, live file watching
  • A reproducible benchmark suite (npm run bench)

Contributing

Issues and PRs welcome. To develop locally:

npm install
npm run build      # bundle to dist/
npm test           # vitest
npm run typecheck

npm link makes sens a global command pointing at your local build.

License

MIT — do what you want, just keep the copyright notice. See the note below on why.

from github.com/iiTzSenn/Sens

Установка Sens

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/iiTzSenn/Sens

FAQ

Sens MCP бесплатный?

Да, Sens MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Sens?

Нет, Sens работает без API-ключей и переменных окружения.

Sens — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Sens в Claude Desktop, Claude Code или Cursor?

Открой Sens на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Sens with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development