Filesystem MCP Server

Sistema de archivosstdiov2026.1.26
Repositorio

Proporciona acceso seguro al sistema de archivos local mediante Model Context Protocol. Permite a los agentes de IA leer, escribir, buscar y gestionar archivos y directorios con controles de acceso configurables. Admite operaciones como leer archivos, crear directorios, mover archivos y buscar mediante patrones glob.

Esta descripción se ha traducido automáticamente y todavía no ha sido revisada.

Conectar

Añade esta configuración a .claude/mcp.json

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

Herramientas (6)

read_file

Read the complete contents of a file from the filesystem. Returns the file content as UTF-8 text.

{
  "type": "object",
  "required": [
    "path"
  ],
  "properties": {
    "path": {
      "type": "string",
      "description": "Absolute path to the file to read"
    }
  }
}

write_file

Write content to a file, creating it if it does not exist or overwriting if it does.

{
  "type": "object",
  "required": [
    "path",
    "content"
  ],
  "properties": {
    "path": {
      "type": "string",
      "description": "Absolute path to the file to write"
    },
    "content": {
      "type": "string",
      "description": "Content to write to the file"
    }
  }
}

list_directory

List the contents of a directory, returning file and subdirectory names.

{
  "type": "object",
  "required": [
    "path"
  ],
  "properties": {
    "path": {
      "type": "string",
      "description": "Absolute path to the directory to list"
    }
  }
}

create_directory

Create a new directory, including any necessary parent directories.

{
  "type": "object",
  "required": [
    "path"
  ],
  "properties": {
    "path": {
      "type": "string",
      "description": "Absolute path of the directory to create"
    }
  }
}

move_file

Move or rename a file or directory from one location to another.

{
  "type": "object",
  "required": [
    "source",
    "destination"
  ],
  "properties": {
    "source": {
      "type": "string",
      "description": "Source path of the file or directory"
    },
    "destination": {
      "type": "string",
      "description": "Destination path"
    }
  }
}

search_files

Search for files matching a glob pattern within a directory tree.

{
  "type": "object",
  "required": [
    "path",
    "pattern"
  ],
  "properties": {
    "path": {
      "type": "string",
      "description": "Base directory to search from"
    },
    "pattern": {
      "type": "string",
      "description": "Glob pattern to match files against"
    }
  }
}

Recursos (1)

file:///{path}

Access to files on the local filesystem within allowed directories.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Anthropic (@modelcontextprotocol)
Repositorio
https://github.com/modelcontextprotocol/servers
Licencia
Apache-2.0
Versión
2026.1.26
Estrellas
86,206
Última actualización
27 de enero de 2026