cs MCP工具 是 AI Skill Hub 本期精选MCP工具之一。综合评分 8.2 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
CodeSpelunker是开源MCP工具,提供CLI代码搜索功能,能理解代码结构并智能排序搜索结果。支持TUI交互界面,适合开发者快速定位和探索代码库中的相关代码片段。
cs MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
CodeSpelunker是开源MCP工具,提供CLI代码搜索功能,能理解代码结构并智能排序搜索结果。支持TUI交互界面,适合开发者快速定位和探索代码库中的相关代码片段。
cs MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/boyter/cs
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"cs-mcp--": {
"command": "npx",
"args": ["-y", "cs"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 cs MCP工具 执行以下任务... Claude: [自动调用 cs MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"cs_mcp__": {
"command": "npx",
"args": ["-y", "cs"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
cs powers searchcode.com — structured code intelligence over any repo, built for AI agents.
Stop grepping through false positives.
cs "database" --only-code # Ignore matches in comments/docs
cs "FIXME" --only-comments # Ignore matches in code/strings
cs "error" --only-strings # Find where error messages are defined
cs "handleRequest" --only-declarations # Jump to where it's defined (func, class, def, etc.)
cs "handleRequest" --only-usages # Every call site, skipping the definition
These are mutually exclusive with --only-code, --only-comments, and --only-strings.
The structural ranker also uses declaration detection to boost matches that appear on declaration lines (e.g. func, class, def) over plain usages. This currently works for the following languages:
Go, Python, JavaScript, TypeScript, TSX, Rust, Java, C, C++, C#, Ruby, PHP, Kotlin, Swift, Shell, Lua, Scala, Elixir, Haskell, Perl, Zig, Dart, Julia, Clojure, Erlang, Groovy, OCaml, MATLAB, Powershell, Nim, Crystal, V
For unsupported languages, all matches are treated as usages and ranked by text relevance only. Structural filtering (--only-code, --only-comments, --only-strings) still works for any language recognised by scc.
Find where the work happens.
cs "login" --gravity=brain # Boosts complex files (the implementation)
cs "login" --gravity=low # Boosts simple files (configs/interfaces)
Preset ranking strategies that tune multiple parameters at once.
cs "authenticate" --profile=precise # Short, focused source files
cs "authenticate" --profile=broad # Cast a wide net, include tests
cs "authenticate" # Balanced (default, same as always)
| Profile | Best for | What it does |
|---|---|---|
balanced | General use (default) | Standard BM25 tuning, moderate complexity boost, test files dampened |
precise | "Find the one file that matters" | Saturates quickly on term frequency, penalises long files, aggressively filters noise and test files |
broad | "Show me everything relevant" | Rewards repeated matches, boosts long files slightly, includes test files at full weight |
When --profile is set it overrides --gravity, --noise, and --test-penalty.
Keep your search targets up to date automatically. When running in a long-lived mode (TUI, HTTP, or MCP), --git-sync periodically runs git pull on repositories found in the search directory.
```shell
If you want to create a package to install, please make it. Let me know, and I will ensure I add it here.
If you have Go >= 1.25.2 installed
go install github.com/boyter/cs/v3@latest
nix-shell -p codespelunker
<https://github.com/NixOS/nixpkgs/pull/236073>
Binaries for Windows, GNU/Linux, and macOS are available from the releases page.
Command line usage of cs is designed to be as simple as possible. Full details can be found in cs --help or cs -h. Note that the below reflects the state of master not a release, as such features listed below may be missing from your installation.
$ cs -h
code spelunker (cs) code search.
Version 3.1.0
Ben Boyter <ben@boyter.org>
cs recursively searches the current directory using some boolean logic
optionally combined with regular expressions.
Works via command line where passed in arguments are the search terms
or in a TUI mode with no arguments. Can also run in HTTP mode with
the -d or --http-server flag.
Searches by default use AND boolean syntax for all terms
- exact match using quotes "find this"
- fuzzy match within 1 or 2 distance fuzzy~1 fuzzy~2
- negate using NOT such as pride NOT prejudice
- OR syntax such as catch OR throw
- group with parentheses (cat OR dog) NOT fish
- note: NOT binds to next term, use () with OR
- regex with toothpick syntax /pr[e-i]de/
Searches can filter which files are searched by adding
the following syntax
- file:test (substring match on filename)
- filename:.go (substring match on filename)
- path:pkg/search (substring match on full file path)
Example search that uses all current functionality
- darcy NOT collins wickham~1 "ten thousand a year" /pr[e-i]de/ file:test path:pkg
The default input field in tui mode supports some nano commands
- CTRL+a move to the beginning of the input
- CTRL+e move to the end of the input
- CTRL+k to clear from the cursor location forward
- F1 cycle ranker (simple/tfidf/bm25/structural)
- F2 cycle code filter (default/only-code/only-comments/only-strings/only-declarations/only-usages)
- F3 cycle gravity (off/low/default/logic/brain)
- F4 cycle noise (silence/quiet/default/loud/raw)
Usage:
cs [flags]
Flags:
--address string address and port to listen on (default ":8080")
-A, --after-context int lines of context after each match (grep mode)
-B, --before-context int lines of context before each match (grep mode)
--binary set to disable binary file detection and search binary files
-c, --case-sensitive make the search case sensitive
--color string color output mode [auto, always, never] (default "auto")
-C, --context int lines of context before and after each match (grep mode)
--cpu-profile string write CPU profile to file (for use with go tool pprof or PGO)
--dedup collapse byte-identical search matches, keeping the highest-scored representative
--dir string directory to search, if not set defaults to current working directory
--exclude-dir strings directories to exclude (default [.git,.hg,.svn])
-x, --exclude-pattern strings file and directory locations matching case sensitive patterns will be ignored [comma separated list: e.g. vendor,_test.go]
-r, --find-root attempts to find the root of this repository by traversing in reverse looking for .git or .hg
-f, --format string set output format [text, json, vimgrep] (default "text")
--git-sync periodically git pull repositories found in the search directory (TUI/HTTP/MCP only)
--git-sync-interval duration interval between git sync pulls (e.g. 5m, 30s, 1h) (default 5m0s)
--git-sync-workers int number of concurrent git pull workers (default 1)
--gravity string complexity gravity intent: brain (2.5), logic (1.5), default (1.0), low (0.2), off (0.0) (default "default")
-h, --help help for cs
--hidden include hidden files
-d, --http-server start the HTTP server
-i, --include-ext strings limit to file extensions (N.B. case sensitive) [comma separated list: e.g. go,java,js,C,cpp]
--line-limit int max matching lines per file in grep mode (-1 = unlimited) (default -1)
--max-read-size-bytes int number of bytes to read into a file with the remaining content ignored (default 1000000)
--mcp start as an MCP (Model Context Protocol) server over stdio
--min include minified files
--min-line-length int number of bytes per average line for file to be considered minified (default 255)
--no-gitignore disables .gitignore file logic
--no-ignore disables .ignore file logic
--no-syntax disable syntax highlighting in output
--noise string noise penalty intent: silence (0.1), quiet (0.5), default (1.0), loud (2.0), raw (off) (default "default")
--only-code only rank matches in code (auto-selects structural ranker)
--only-comments only rank matches in comments (auto-selects structural ranker)
--only-declarations only show matches on declaration lines (func, type, var, const, class, def, etc.)
--only-strings only rank matches in string literals (auto-selects structural ranker)
--only-usages only show matches on usage lines (excludes declarations)
-o, --output string output filename (default stdout)
--profile string ranking profile [balanced, precise, broad] — overrides --gravity, --noise, and --test-penalty when set
--ranker string set ranking algorithm [simple, tfidf, bm25, structural] (default "structural")
--result-limit int maximum number of results to return (-1 for unlimited) (default -1)
--reverse reverse the result order
-s, --snippet-count int number of snippets to display (default 1)
-n, --snippet-length int size of the snippet to display (default 300)
--snippet-mode string snippet extraction mode: auto, snippet, lines, or grep (default "auto")
--template-display string path to a custom display template
--template-search string path to a custom search template
--template-style string built-in theme for the HTTP server UI [dark, light, bare] (default "dark")
--test-penalty float score multiplier for test files when query has no test intent (0.0-1.0, 1.0=disabled) (default 0.4)
-t, --type strings limit to language types [comma separated list: e.g. Go,Java,Python]
-v, --version version for cs
--weight-code float structural ranker: weight for matches in code (default 1.0) (default 1)
--weight-comment float structural ranker: weight for matches in comments (default 0.2) (default 0.2)
--weight-string float structural ranker: weight for matches in strings (default 0.5) (default 0.5)
Searches work on single or multiple words with a logical AND applied between them. You can negate with NOT before a term. You can combine terms with OR and use parentheses to control grouping. You can do an exact match with quotes and do regular expressions using toothpicks.
Example searches,
cs t NOT something test~1 "ten thousand a year" "/pr[e-i]de/" file:test
cs (cat OR dog) AND NOT bird
cs path:vendor main # search only under vendor/
cs "func main" path:cmd # find main functions under cmd/
cs handler lang:go # search only Go files
cs TODO lang:go,python # search Go and Python files
cs NOT lang:go test # search all languages except Go
cs handler complexity:>=50 # find complex files containing "handler"
cs "json" --only-code # find "json" in code, ignoring string literals
cs "hack" --only-comments # find "hack" in comments only
cs "func main" --only-declarations # find main function declarations
cs "logger" --only-usages # find where logger is called, not defined
cs "Copyright" --dedup # collapse identical copyright headers
You can use it in a similar manner to fzf in TUI mode if you like, since cs will return the matching document path if you hit the enter key one you have highlighted a result.
cat `cs` # cat out the matching file
vi `cs` # edit the selected file
Ever searched for authenticate and gotten 200 results from config files, comments, and test stubs before finding the actual implementation? cs fixes that.
It combines the speed of CLI tools with the relevance ranking usually reserved for heavy indexed search engines like Sourcegraph or Zoekt, but without needing to maintain an index.
cs "authenticate" --gravity=brain # Find the complex implementation, not the interface
cs "FIXME OR TODO OR HACK" --only-comments # Search only in comments, not code or strings
cs "error" --only-strings # Find where error messages are defined
cs "handleRequest" --only-declarations # Jump straight to where it's defined
cs "handleRequest" --only-usages # Find every call site, skip the definition
cs "error" --dedup # Collapse duplicated matches into one result
Licensed under MIT.
[//]: # ([](https://asciinema.org/a/589640))
cs TUI demo
<https://github.com/user-attachments/assets/3b7f4bb2-d542-406d-9c53-29c0430dd60a>
No.
The answer is probably no. It's not directly comparable. No other tool I know of works like this outside of full indexing tools such as hound, searchcode, sourcegraph etc... None work on the fly like this does.
As far as I know what cs does is unique for a command line tool.
cs runs a full lexical analysis and complexity calculation from scc on every matching file. This is expensive compared to the raw byte-scanning of ripgrep, but probably not as slow as you may think.
On a modern machine (such as Apple Silicon M1), it can search and rank the entire Linux kernel source in ~3 seconds. Using a 9950x3D it can search the kernel in ~400 milliseconds.
So long as they are text. I wrote it to search code, but it works just as well on full-text documents. The snippet extraction, for example, was tested on Pride and Prejudice, a text I know more about than I probably should considering I'm male.
There is none. Everything is brute force calculated on the fly. There is some caching to speed things up, but should in practice never affect the results.
cs uses a weighted BM25 algorithm.
Standard BM25 weights matches based on "fields" (so title, body, category). cs generates fields dynamically by parsing the code syntax.
This means a file where your search term appears in the logic will rank higher than a file where the term only appears in the documentation, even if the word count is the same.
You can tweak the values as needed via the CLI, or on the fly change what fields cs searches.
Complexity gravity is a ranking boost that uses each file's cyclomatic complexity to influence result ordering.
In code search, the best result is usually where the logic is implemented. These files usually have higher algorithmic density (branches, loops, conditions). cs uses this so implementation files generally outrank data/config/interface files all things being equal.
The --gravity flag accepts named intent:
| Intent | Strength | Purpose |
|---|---|---|
brain | 2.5 | Aggressively surface complex core logic |
logic | 1.5 | Standard boost toward complex code |
default | 1.0 | Balanced (applied when flag not set) |
low | 0.2 | Flatten gravity, find simple boilerplate |
off | 0.0 | Pure text relevance, no complexity boost |
cs --gravity=brain "search term" # find complex implementations
cs --gravity=off "search term" # pure text relevance
It's not fun... see <https://github.com/boyter/cs/blob/master/pkg/snippet/snippet.go> and <https://github.com/boyter/cs/blob/master/pkg/snippet/snippet_lines.go>
It works by passing the document content to extract the snippet from and all the match locations for each term. It then looks through each location for each word, and checks on either side looking for terms close to it. It then ranks on the term frequency for the term we are checking around and rewards rarer terms. It also rewards more matches, closer matches, exact case matches, and matches that are whole words.
For more info read the "Snippet Extraction AKA I am PHP developer" section of this blog post <https://boyter.org/posts/abusing-aws-to-make-a-search-engine/>
It's a little brutalist.
<img alt="cs http" src="https://github.com/boyter/cs/raw/master/cs_http.png">
You can change its look and feel using --template-style for built-in themes (dark, light, bare), or provide custom templates with --template-display and --template-search. See <https://github.com/boyter/cs/tree/master/asset/templates> for example templates you can use to modify the look and feel.
cs -d --template-style light
cs -d --template-display ./asset/templates/display.tmpl --template-search ./asset/templates/search.tmpl
活跃的Go项目,结合MCP协议和代码结构感知的创新搜索工具。设计优雅,社区认可度高,适合AI编程增强场景。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,cs MCP工具 在MCP工具赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | cs |
| 原始描述 | 开源MCP工具:codespelunker - CLI code search tool that understands code structure and ranks r。⭐982 · Go |
| Topics | 代码搜索CLI工具结构感知TUI界面MCP协议 |
| GitHub | https://github.com/boyter/cs |
| License | MIT |
| 语言 | Go |
收录时间:2026-05-19 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端