惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
雷峰网
雷峰网
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
V
V2EX
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
Vercel News
Vercel News
美团技术团队
人人都是产品经理
人人都是产品经理
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Connect Claude to Your Files in 10 Minutes (No Code)
PromptMaster · 2026-06-16 · via DEV Community

The single fastest way to understand why MCP matters is to connect one server and watch your assistant do something it couldn't do a minute earlier — reach into a real folder on your computer and work with your actual files.

No code. About ten minutes. Here's exactly how, using the filesystem server in Claude Desktop, because it's the most tangible first win and the safest one to reason about.

Before you start

You need Claude Desktop installed. That's it. Everything below is editing one small text file and following careful steps — if you can do that, you're ready. We'll point the assistant at a single folder you choose, so nothing else on your computer is in play.

Step 1 — Open the configuration file

Claude Desktop keeps its MCP setup in a small configuration file, reached through the app's settings. Inside, MCP servers live under one section called mcpServers. Each server you add is a single entry: a name you choose, plus instructions for how to start it.

Step 2 — Add the filesystem server

Add this single entry under mcpServers. The only part you change is the last line — point it at a real folder you're comfortable letting the assistant work in (ideally a dedicated test folder at first, not your whole drive):

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/your/folder"
      ]
    }
  }
}

Read in plain English, this just says: start this filesystem server program, and give it access to this one folder. The name "filesystem" is only a label for you. Nothing here is as intimidating as it looks.

Step 3 — Restart fully

Save the file, then completely quit and reopen Claude Desktop. This restart is the single most-forgotten step, and skipping it creates the false impression that the setup failed. Don't just close the window — fully quit and relaunch so it reloads the config.

Step 4 — Verify

Ask the assistant something explicit, like: "use the filesystem tools to list what's in my folder," or "create a short text file called notes.txt in my folder." Watch it actually do it. That moment — a chat assistant reaching into your real filesystem — is MCP working. You're done.

If it doesn't work, it's almost always one of these

  • Nothing showed up? You probably didn't fully restart. Quit and reopen the app completely.
  • The server failed to start? Check the folder path for typos, and make sure it actually exists.
  • The assistant ignores it? Be explicit — name the tool, as in "use the filesystem tools to…". Once it uses it once, it reaches for it naturally after.

The one habit that makes it click

The setup is the easy part. The habit that turns this into real productivity is learning to direct instead of paste. Once the folder is connected, you stop shuttling text in and out of chat and start describing what you want done — "read the notes in this folder and summarize every decision," or "draft a new document from the existing ones here." The assistant does the reaching and reading; you do the directing and the judgment. That shift, from feeding to directing, is the whole point.

One safety note

Start the filesystem server pointed at a single dedicated folder, not your entire drive. You can always widen access later — it's far easier to grant more than to undo a mistake. And when you start connecting servers that touch important accounts, take a moment to trust the publisher first.


Free starter: I put this setup plus the next steps onto a 5-page cheat sheet — the servers worth connecting, a quick safety check, and a one-page reference. Grab it free: MCP Quick-Start Cheat Sheet

Go deeper: For every host (Claude Code and Cursor too), choosing servers safely, real workflows, and a 7-day plan, there's the full guide: MCP Made Simple

What's the first folder you'd connect — notes, a project, your whole documents folder? Tell me what you'd reach for first.