mcp-for-spotlight
An MCP server that exposes macOS Spotlight search as tools, wrapping mdfind and mdls to provide full-text and metadata file search across the system.
README
mcp-for-spotlight
Ein kleiner MCP-Server (Model Context Protocol), der die macOS-Spotlight-Suche
als Tools bereitstellt. Er kapselt mdfind (Volltext- und Metadaten-Suche über
den Spotlight-Index) und mdls (Metadaten einer Datei). Systemweite
Dateisuche, nicht auf eine App beschränkt.
Was ist ein MCP-Server?
MCP (Model Context Protocol) ist ein offener Standard, über den KI-Anwendungen (der Host, etwa Claude Desktop oder Claude Code) mit externen Werkzeugen und Daten sprechen. Ein Server stellt Fähigkeiten (Tools) bereit und weiß selbst nichts von KI. Kommunikation über JSON-RPC 2.0, hier per stdio.
Warum Spotlight statt locate oder AppleScript
- Spotlight (
mdfind) indexiert Datei-Inhalt und Metadaten (Betreff, Autor, Typ, Datum) und wird live aktualisiert. Der richtige Index für Inhaltssuche. locatekennt nur Datei-Pfade/-Namen, keinen Inhalt, und ist oft veraltet oder inaktiv.- AppleScript-
whose(etwa in Mail) ist ein linearer Scan ohne Index.
Tools
| Tool | Zweck |
|---|---|
spotlight_search |
Dateien per mdfind finden: Freitext, Dateiname oder rohe Spotlight-Abfrage |
spotlight_metadata |
Spotlight-Metadaten einer Datei per mdls lesen |
spotlight_search erwartet genau eine Suchart:
text— Freitext (Volltext + Metadaten), z. B."Quartalsbericht"name— Teilstring im Dateinamenquery— rohe Spotlight-Abfrage, z. B.kMDItemContentType == "com.adobe.pdf" && kMDItemFSName == "*Rechnung*"c
Optional onlyIn (auf ein Verzeichnis begrenzen) und limit (Vorgabe 50).
Installation
npm install
Kein Build-Schritt: reines ESM-JavaScript, läuft direkt mit Node (>= 18).
Full Disk Access
Geschützte Orte (z. B. ~/Library/Mail, ~/Library/Messages) liefern nur
Treffer, wenn der ausführende Prozess Full Disk Access hat
(Systemeinstellungen → Datenschutz & Sicherheit → Festplattenvollzugriff, dort
das Terminal bzw. den Node-Host freigeben). Ohne FDA sind normale
Nutzerdateien trotzdem durchsuchbar.
Lokal testen
npm run inspect
Registrieren
Claude Code:
claude mcp add spotlight -- node /absolute/path/to/mcp-for-spotlight/src/index.js
Claude Desktop, in ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"spotlight": {
"command": "node",
"args": ["/absolute/path/to/mcp-for-spotlight/src/index.js"]
}
}
}
Beispiele
spotlight_search name="Rechnung" onlyIn="/Users/me/Documents"
spotlight_search query='kMDItemContentType == "com.adobe.pdf"' onlyIn="/Users/me/Downloads"
spotlight_metadata path="/Users/me/Downloads/x.pdf" attributes=["kMDItemContentCreationDate"]
Lizenz
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.