Home/Servers/Filesystem MCP Server

Filesystem MCP Server

by Anthropic ยท โญ 4.2k stars ยท updated 1 months ago

Secure file operations with configurable access controls. Read, write, create, delete files and directories with path-based permission scoping. Official reference implementation.

95
Excellent

Quality Score Breakdown

maintenance98/100
community92/100
documentation95/100
compatibility95/100

Use Cases

  • โœ“read files
  • โœ“write files
  • โœ“manage directories
  • โœ“file operations

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/dir"
      ]
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/dir"
      ]
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "filesystem": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-filesystem",
          "/path/to/allowed/dir"
        ]
      }
    }
  }
}
โ† Back to all servers