Dowse MCP Server

Fast local full-text search for Windows files (tantivy + jieba), exposed to AI agents over MCP.

Local serverstdio

What is the Dowse MCP server?

Fast local full-text search for Windows files (tantivy + jieba), exposed to AI agents over MCP. That is what the dowse mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Open-source local file content search for Windows. Find file names, PDF and Office contents, source code, and text inside screenshots — one hotkey away.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • Multi — term queries default to AND semantics. Quoted phrase queries match on exact position. Inline operators narrow things down further: path:reports
  • Windows-native — ✓
  • Metric — Design target

Getting it running

Installation goes through your MCP client rather than a global install: point it at cargo on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Dowse's toolset — Multi, Windows-native, Metric — is a fair guide to whether it matches your workflow. It is maintained by ltspace; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
Multiterm queries default to AND semantics. Quoted phrase queries match on exact position. Inline operators narrow things down further: path:reports, mtime:>2026-01-01, size:>10mb, uppercase OR between groups, -term to exclud
Windows-native
MetricDesign target

How to install the Dowse MCP server

{
  "mcpServers": {
    "dowse": {
      "command": "npx",
      "args": ["-y", "cargo"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Dowse to Multi.
  • Use Dowse to Windows-native.
  • Use Dowse to Metric.

Frequently asked questions

It connects Dowse to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Multi, Windows-native, Metric) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Dowse directly.