Let your AI assistant search and summarize files on your computer
Your documents, invoices, and contracts live in folders on your machine — and you want to ask questions about them ("find the contract that mentions X", "sum up these invoices") without uploading anything anywhere.
You need
- · An AI app that supports skills: Claude Desktop, Claude Code, Cursor, VS Code — don't have one yet?
- · The Filesystem skill (no API key)
- · About 4 minutes
Step by step
- 1Decide which folder to share
The skill only sees folders you explicitly list in its configuration — for example ~/Documents/Invoices. Everything else on your machine stays invisible. Pick something small and harmless for your first test.
- 2Install the Filesystem skill
Use the install widget below. Important: replace the example folder path (~/Documents) in the snippet with the folder you actually want to share.
- 3Restart and ask
Fully restart the app, then paste the prompt below — adjust the folder name to yours.
Install the Filesystem skill
Open Settings → Developer → Edit Config in Claude Desktop (this opens claude_desktop_config.json) and merge this block, then fully restart the app:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"~/Documents"
]
}
}
}The prompt
List all PDF files in the folder I shared with you, grouped by month based on the file date. Then open the three most recent ones and give me a one-line summary of each.
What you should see
The assistant lists your actual files with dates, reads the recent ones, and summarizes them — entirely on your machine, no upload involved.
Last reviewed 2026-06-10
If it doesn't work
Run a website? Make sure agents can read it.
Assistants with skills like these are already visiting websites on their owners' behalf. agentics checks free of charge whether yours is readable, findable, and trusted by AI agents.
Run free check →More recipes
You want your AI assistant to actually open websites — compare prices, check availability, read pages that need a real browser — instead of telling you it cannot browse.
Your assistant answers from training data that is months old. You want it to search the web right now — news, prices, fresh documentation — and answer with sources.
Your notes, docs, and project pages live in Notion — and you want to ask your assistant about them ("what's the status of project X?") and have it create or update pages for you.