Showing 28 verified skills. 284 preview entries are hidden until we confirm a real source. Show preview skills · Why?
Give your AI assistant safe, sandboxed access to your filesystem
npx @anthropic/mcp-server-filesystemSecure filesystem access via MCP with configurable permissions, path restrictions, and operation logging.
This is the actual SKILL.md file that powers this skill. Copy it to install.
---
name: mcp-filesystem
description: |
MCP server for advanced filesystem operations. Trigger when the user needs
bulk file operations, directory trees, file watching, or permission management.
Phrases: "list files", "find files", "watch directory", "file tree".
mcpServers:
filesystem:
command: npx
args:
- "@anthropic/mcp-server-filesystem"
- "/Users"
---
# Filesystem MCP
MCP server for advanced filesystem operations beyond basic read/write.
Provides directory trees, glob searches, file watching, permission
management, and bulk operations.
## Configuration
Add to your Claude Code MCP config:
```json
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["@anthropic/mcp-server-filesystem", "/path/to/allowed/directory"]
}
}
}
```
The last argument restricts access to the specified directory tree for security.
## Available tools
- **read_file** - Read file contents
- **write_file** - Write or overwrite a file
- **list_directory** - List files and folders with metadata
- **search_files** - Glob-based file search
- **create_directory** - Create directories recursively
- **move_file** - Move or rename files
- **get_file_info** - File metadata (size, permissions, timestamps)
## Example usage
- "Show me the directory tree for src/"
- "Find all TypeScript files modified today"
- "Move all PNG files from /downloads to /assets"
## Requirements
- Node.js 18+
mkdir -p ~/.claude/skills/mcp-filesystem~/.claude/skills/mcp-filesystem/SKILL.mdResulting file structure:
~/.claude/
skills/
mcp-filesystem/
SKILL.md <-- skill definitionSkills are loaded automatically by Claude Code when you start a new session. The skill name and description in the frontmatter determine when Claude triggers it.
Recommended from shared domain, career, and tool overlap with Filesystem MCP
Inspect Redis keys, TTLs, and cache hit rates from your AI editor
Both used by Software Engineer, DevOps Engineer
Query Sentry errors and analyze stack traces from your AI editor
Both used by Software Engineer, DevOps Engineer
Create custom tool integrations that extend any AI assistant
Both used by Software Engineer, DevOps Engineer
Turn one prompt into a parallel pipeline across Claude, Codex, Gemini, and Cursor agents -- then get a unified result back
Both used by Software Engineer, DevOps Engineer
Manage AWS resources - S3, Lambda, and CloudWatch - from your editor
Both used by Software Engineer, DevOps Engineer
Query databases, inspect schemas, and explore data from your AI editor
Both used by Software Engineer
Filesystem MCP