lupa-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@lupa-mcpFind the contract that mentions the penalty clause"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
lupa-mcp
Let your AI agent search the documents on your Mac — by what's written inside them.
An MCP server for Lupa, a macOS file search app with its own index. Your agent asks Lupa; Lupa answers from a local index in ~30 ms. Nothing touches the network.
"find the contract that mentions the penalty clause"
↓
lupa_search → ranked paths + matching snippets
lupa_read → the document's text, without opening the fileSearches file names and document contents: PDF, Word, Excel, PowerPoint, plain text, Hangul HWP/HWPX, and scanned PDFs read with OCR.
Why this instead of find/grep
| lupa-mcp | |
Searches inside PDF, DOCX, HWP | no | yes |
Scanned documents (OCR) | no | yes |
Korean partial words and particles | poorly | yes — |
Speed on a large disk | seconds | ~30 ms (indexed) |
Agent needs file system access | yes | no — Lupa reads the files, not your agent |
That last row is the point. Your agent gets document contents without you granting it access to your disk.
Related MCP server: LocalSynapse
Requirements
The Lupa app must be installed — this server reads the index that Lupa builds; it does not index anything itself.
Install Lupa (free) from the Mac App Store: https://lupa.kr
Open it, add the folders you want searchable, and let indexing finish.
macOS only.
Install
Claude Code
claude mcp add lupa -- npx -y lupa-mcpClaude Desktop / Cursor / any MCP client — add to the client's MCP config:
{
"mcpServers": {
"lupa": { "command": "npx", "args": ["-y", "lupa-mcp"] }
}
}That's it. No API key, no account, no configuration.
Tools
lupa_search
argument | default | meaning |
| — | see syntax below |
| 10 | results to return (max 50) |
| false | file names only, ignore contents (faster) |
| 160 | truncate each snippet (0 = none) |
lupa_read
Returns the text Lupa already extracted from a file — cheaper than reading the original, and it works for formats your agent cannot parse. Requires Lupa 1.1 or later.
argument | default | meaning |
| — | absolute path, as returned by |
| 8000 | cap the returned text (0 = no limit) |
Query syntax
word1 word2 files matching ALL words rank first
n:word file name only (name:, 이름:, 文件名:)
c:word document content only (content:, 내용:, 内容:)
f:word folder path contains (폴더:, 文件夹:)
-word exclude
"exact phrase" literal match
.pdf *.mp3 report* extension / wildcard
kind:document document · pdf · hwp · image · video · audio · code · archive · app
size:>10mb size:<1mb
date:today date:week · date:month · date:7d · date:2026-06Korean and Chinese prefixes work too (종류: 크기: 날짜: / 种类: 大小: 日期:).
Korean is handled properly — partial words inside compounds and attached particles both match, which is what Spotlight gets wrong.
Privacy
Everything runs on your Mac. Lupa has no network code at all, and this server only launches Lupa's bundled command-line tool and passes the results to your agent. Nothing is uploaded, and there is no telemetry.
Notes
Lupa's free index covers up to 50,000 files. This server inherits whatever the app indexed — there is no separate limit or paywall here.
Only the beginning of each document is indexed, so
lupa_readtruncates long files.If Lupa is installed somewhere unusual, set
LUPA_SEARCH_PATHto thelupa-searchbinary inside the app bundle.
Troubleshooting
message | fix |
"Lupa를 찾을 수 없습니다" / not found | Install Lupa from the Mac App Store |
"검색 인덱스가 없습니다" | Open Lupa, add folders, wait for indexing |
"본문 읽기를 지원하지 않습니다" | Update Lupa to 1.1 or later |
No results for a file you know exists | Its folder may not be registered in Lupa |
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Securely search and manage workspace context files for AI agents and teams.
Search and reason over your Obsidian-style Markdown vault, right from ChatGPT.
Agent-native search engine with live web research optimized for AI agents.
Ingest, manage, and retrieve documents for RAG-powered AI applications
Related MCP Servers
- AlicenseAqualityAmaintenancePrivacy-first local document search using semantic search. Runs entirely on your machine with no cloud services, supporting PDF, DOCX, TXT, and Markdown files.2294,655 npm398MIT
- AlicenseNot gradedqualityAmaintenanceOffline AI-powered local file search MCP server for Windows. Searches inside document contents (Word, Excel, PDF, PowerPoint, HWP) using BM25 + dense vector hybrid search. 100% local, no cloud, no login, no telemetry.7Apache 2.0
- AlicenseAqualityAmaintenanceEnables AI agents to search local Markdown documents using natural language, with automatic indexing and section-level retrieval.105 npm1MIT
- AlicenseAqualityCmaintenanceProvides LLMs with secure, read-only access to local documentation by scanning directories, extracting content from PDF, DOCX, Markdown, and text files, and performing keyword searches.37 npmMIT