mdsel

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

mdsel

mdsel

Use
mcp__mdsel__mdsel
tool for markdown files:
  1. Index first:
    files: ["README.md"]
    (no selector)
  2. Then select:
    files: ["README.md"], selector: "h2.4,h3.6"
0-based indexing. Always index before selecting.
NEVER use the
*
wildcard selector.
If you need the entire document, use the Read tool instead - that's what it's for. The purpose of mdsel is selective reading to save tokens.
请对markdown文件使用
mcp__mdsel__mdsel
工具:
  1. 先建立索引:
    files: ["README.md"]
    (无需选择器)
  2. 然后进行选择:
    files: ["README.md"], selector: "h2.4,h3.6"
采用从0开始的索引规则。请始终先建立索引再进行选择。
切勿使用
*
通配符选择器
。如果需要获取整个文档内容,请改用Read工具——这正是它的用途。mdsel的作用是选择性读取以节省token。

When to use Read instead

何时改用Read工具

Use the Read tool for markdown files when:
  • You need the entire file content (don't use mdsel with
    *
    or
    root
    - just use Read)
  • You plan to edit the file (Edit tool requires prior Read)
在以下场景下,请对markdown文件使用Read工具:
  • 你需要整个文件的内容(不要使用带
    *
    root
    的mdsel——直接用Read即可)
  • 你计划编辑文件(Edit工具需要先使用Read)