dowse
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| index_statusA | 查看本地索引的概况:文档总数、已注册的索引根目录、索引落盘体积、最近一次更新时间,以及当前生效的索引规则(排除目录/追加文本扩展名/单文件体积上限)。不需要参数。 |
| previewA | 取某个文件在索引里命中查询词的完整上下文(约 1500 字,比 search 返回的摘要长得多),附带文件大小/修改时间/类型。path 用 search 结果里的 path 字段。 |
| searchA | 在本地全文索引里搜索,返回命中列表;命中词用 «» 标出。查询串支持内联操作符:path:关键词(按路径)、mtime:>2026-01-01 / mtime:<=2026-07(按修改日期,比较符 > >= < <=,日期 YYYY-MM-DD 或 YYYY-MM)、size:>10mb / size:<500kb(按体积,单位 kb/mb/gb)、大写 OR 分组(组内空格为 AND)、-词 或 NOT 词 排除;带空格的操作数加引号如 path:"我的 文档"。默认按相关度排序,可用 sort 改按修改时间/体积排;ext 可按扩展名过滤(逗号分隔多个);limit/offset 翻页,返回里的 total_hits 是匹配总数。先用这个工具定位候选文件,再用 preview 看更长的上下文。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool serves a clearly distinct role: index_status reports overall index health, search returns matching hits, and preview provides extended context for a specific file. The description explicitly pairs search with preview as a two-step workflow, removing any ambiguity.
The names are simple and readable, but they do not follow a single consistent convention: 'search' and 'preview' are bare verbs while 'index_status' is a noun phrase with an underscore. There is no drastic mixing of styles, but the pattern is not uniform.
Three tools is well-scoped for a local full-text search server: inspect index status, search, and preview matches. Each tool has a clear purpose and none feel redundant or missing for the core search workflow.
The server covers the full search journey: locating candidates with search, examining details with preview, and checking the index state with index_status. There are no obvious dead ends for the stated purpose of searching a local index.