DedcodeMCP File Manager
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DedcodeMCP File Managercreate a new file called 'meeting_notes.txt' in my Documents folder"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
# DedcodeMCP Gestor de Archivos
Servidor MCP (Model Context Protocol) para gestión de archivos en el escritorio.
Características
Crear archivos
Leer archivos
Editar archivos
Mover/renombrar archivos
Eliminar archivos
Listar archivos
Related MCP server: File Operations MCP Server
Instalación
\\ash
Clonar el repositorio
git clone https://github.com/TU_USUARIO/mcp-gestor-archivos.git
Instalar dependencias
cd mcp-gestor-archivos pnpm install \\
Uso
Ejecutar localmente
\\ash pnpm tsx main.ts \\
Configurar en Claude Desktop
Edita el archivo de configuración de Claude Desktop:
Windows: %APPDATA%\Claude\claude_desktop_config.json\
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json\
Agrega esta configuración:
\\json { "mcpServers": { "gestor-archivos": { "command": "cmd", "args": [ "/c", "cd", "/d", "RUTA_A_TU_PROYECTO", "&&", "npx", "-y", "tsx", "main.ts" ] } } } \\
Requisitos
Node.js 18 o superior
pnpm
Tecnologías
TypeScript
Model Context Protocol SDK
Zod para validación
Licencia
MIT
Proyecto Creado por Diego Orozco (Dedcode14).
Available Tools
6 toolscrear_archivoC
Crea un archivo nuevo en el sistema
| Name | Required | Description | Default |
|---|---|---|---|
| nombre | Yes | Nombre del archivo con extensión | |
| contenido | Yes | El contenido del archivo |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. While 'crea' implies a write operation, it fails to mention critical aspects like whether this requires specific permissions, if it overwrites existing files, error handling, or any rate limits. This leaves significant gaps in understanding the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence: 'Crea un archivo nuevo en el sistema.' It is front-loaded with the core action and resource, with no unnecessary words or redundancy, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a file creation tool with no annotations and no output schema, the description is insufficient. It lacks details on behavioral traits, error cases, or return values, which are crucial for safe and effective use. This makes it incomplete for a mutation tool in this context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear descriptions for both parameters ('nombre' as file name with extension, 'contenido' as file content). The description does not add any extra meaning beyond the schema, such as format details or constraints, so it meets the baseline for high schema coverage without compensating further.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Crea un archivo nuevo en el sistema' clearly states the verb 'crea' (creates) and the resource 'archivo nuevo' (new file), making the purpose evident. It distinguishes from siblings like 'editar_archivo' (edit file) or 'eliminar_archivo' (delete file) by focusing on creation, though it doesn't explicitly mention these distinctions in the description itself.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It lacks any mention of prerequisites, such as needing write permissions or specific contexts, and does not reference sibling tools like 'editar_archivo' or 'leer_archivo' for comparison, leaving usage unclear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
editar_archivoC
Edita el contenido de un archivo existente (sobrescribe el contenido)
| Name | Required | Description | Default |
|---|---|---|---|
| nombre | Yes | Nombre del archivo a editar | |
| nuevo_contenido | Yes | Nuevo contenido del archivo |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'sobrescribe el contenido' (overwrites content), indicating destructive behavior, but fails to address critical aspects like error handling (e.g., if the file doesn't exist), permission requirements, or what the response looks like (e.g., success confirmation). This leaves significant gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose and key behavior ('sobrescribe el contenido'). It is front-loaded with essential information and contains no unnecessary words, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive mutation tool with no annotations and no output schema, the description is insufficient. It lacks details on error conditions, permissions, response format, and how it differs from siblings beyond the basic edit action. Given the complexity and lack of structured data, more context is needed for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with clear descriptions for both parameters ('nombre' as the file name and 'nuevo_contenido' as the new content). The description adds no additional semantic details beyond what the schema provides, such as file path formats or content constraints, so it meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Edita el contenido') and target resource ('un archivo existente'), distinguishing it from siblings like crear_archivo (create) and leer_archivo (read). However, it doesn't explicitly differentiate from mover_archivo (move) or eliminar_archivo (delete) beyond the edit action, keeping it from a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like crear_archivo or mover_archivo, nor does it mention prerequisites such as file existence or permissions. It simply states the action without contextual usage instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
eliminar_archivoC
Elimina un archivo del sistema
| Name | Required | Description | Default |
|---|---|---|---|
| nombre | Yes | Nombre del archivo a eliminar |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. 'Elimina' clearly indicates a destructive operation, but the description doesn't disclose whether deletion is permanent or reversible, what permissions are required, whether there are confirmation prompts, or what happens on success/failure. For a destructive tool with zero annotation coverage, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero wasted words. It's appropriately sized for a simple delete operation and gets straight to the point without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive file deletion tool with no annotations and no output schema, the description is inadequate. It doesn't explain what happens after deletion (success message, error handling), whether deletion is permanent, what permissions are needed, or how it differs from moving files. Given the complexity and risk of file deletion, more context is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the single parameter 'nombre' (name of file to delete). The description doesn't add any additional parameter semantics beyond what the schema provides, such as path requirements, file format restrictions, or wildcard support. Baseline 3 is appropriate when schema does the documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Elimina' - deletes) and resource ('un archivo del sistema' - a file from the system), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'mover_archivo' (move file) or 'editar_archivo' (edit file) beyond the basic verb distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided about when to use this tool versus alternatives. With siblings like 'mover_archivo' (move file) and 'editar_archivo' (edit file), there's no indication of when deletion is appropriate versus moving or editing, nor any prerequisites or constraints mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
leer_archivoC
Lee el contenido de un archivo existente
| Name | Required | Description | Default |
|---|---|---|---|
| nombre | Yes | Nombre del archivo a leer |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states the basic action. It doesn't disclose behavioral traits such as error handling (e.g., if file doesn't exist), permissions required, output format (e.g., text, binary), or any side effects, which is inadequate for a tool with mutation potential.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with no wasted words, making it appropriately concise. However, it lacks front-loading of critical details like constraints or alternatives, slightly reducing its effectiveness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of file operations, no annotations, and no output schema, the description is incomplete. It fails to explain return values, error cases, or how it differs from siblings, leaving significant gaps for an AI agent to use it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the input schema already documents the parameter 'nombre' fully. The description adds no additional meaning beyond what the schema provides, such as file path conventions or encoding details, resulting in the baseline score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Lee el contenido') and resource ('de un archivo existente'), making the purpose understandable. However, it doesn't differentiate from sibling tools like 'listar_archivos' or 'editar_archivo' beyond the basic verb, which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites like file existence, compare to 'listar_archivos' for metadata vs. content, or specify scenarios like reading text vs. binary files, leaving usage context unclear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listar_archivosB
Lista todos los archivos en el sandbox
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states it lists files but doesn't describe return format (e.g., list of names, metadata), pagination, error handling, or any constraints like rate limits or permissions needed. This leaves significant gaps for an agent to use it effectively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with no wasted words. It's front-loaded with the core action and resource, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and a simple zero-parameter tool, the description is minimal. It states what the tool does but lacks details on behavior, output format, or usage context, making it incomplete for reliable agent operation despite the low complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters with 100% schema description coverage, so the schema already fully documents the inputs. The description doesn't need to add parameter details, and it correctly implies no inputs are required. A baseline of 4 is appropriate for a zero-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Lista') and resource ('archivos en el sandbox'), making the purpose understandable. However, it doesn't differentiate from potential siblings like 'leer_archivo' (which might read file contents), so it's not fully specific about scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'leer_archivo' or 'crear_archivo'. It lacks context about prerequisites, such as whether the sandbox must exist or be accessible, or any limitations on usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
mover_archivoC
Mueve o renombra un archivo
| Name | Required | Description | Default |
|---|---|---|---|
| origen | Yes | Ruta/nombre del archivo origen | |
| destino | Yes | Ruta/nombre del archivo destino |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but offers minimal behavioral context. It states the action ('Mueve o renombra') but doesn't disclose critical traits like whether it overwrites existing files, requires specific permissions, handles errors, or affects file metadata. This is inadequate for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly concise - a single Spanish phrase that directly states the tool's function with zero wasted words. It's front-loaded and efficiently communicates the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a file mutation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what happens on success/failure, whether renaming is just moving within same directory, or how it interacts with sibling tools. The context demands more completeness for safe agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds no parameter semantics beyond what the schema already provides (100% coverage). The schema descriptions clearly explain 'origen' as source path/name and 'destino' as destination path/name. The baseline score of 3 reflects adequate schema documentation without description enhancement.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('Mueve o renombra') and resource ('un archivo'), making it immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'editar_archivo' or 'crear_archivo', which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There's no mention of prerequisites, when not to use it, or how it differs from siblings like 'editar_archivo' (which might modify content) or 'crear_archivo' (which creates new files).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
- First observed
crear_archivo - First observed
editar_archivo - First observed
eliminar_archivo - First observed
leer_archivo - First observed
listar_archivos - First observed
mover_archivo
TDQS
Each tool has a clearly distinct purpose with no ambiguity: crear_archivo (create), editar_archivo (edit), eliminar_archivo (delete), leer_archivo (read), listar_archivos (list), and mover_archivo (move/rename). The actions and targets are well-defined and non-overlapping.
All tool names follow a consistent Spanish verb_noun pattern (e.g., crear_archivo, editar_archivo, eliminar_archivo). The naming is uniform across all six tools, making them predictable and readable.
With 6 tools, this server is well-scoped for file management in a sandbox environment. Each tool earns its place by covering essential file operations (create, read, update, delete, list, move), which is appropriate for the domain.
The tool set provides complete CRUD/lifecycle coverage for file management: create (crear_archivo), read (leer_archivo), update (editar_archivo), delete (eliminar_archivo), list (listar_archivos), and move/rename (mover_archivo). There are no obvious gaps for the stated purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Manage files and folders directly from your workspace. Read and write files, list directories, cre…
Browse and manage files in your Moxt AI workspace from any MCP client.
Persistent file storage for AI agents via MCP and curl. Upload, download, and version files.
Securely search and manage workspace context files for AI agents and teams.
Related MCP Servers
- FlicenseDqualityDmaintenanceEnables AI models to perform file system operations (reading, creating, and listing files) on a local file system through a standardized Model Context Protocol interface.3-
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables enhanced file system operations including reading, writing, copying, moving files with streaming capabilities, directory management, file watching, and change tracking.21MIT
- AlicenseCqualityDmaintenanceA server implementing the Model Context Protocol that provides filesystem operations (read/write, directory management, file movement) through a standardized interface with security controls for allowed directories.94MIT
- FlicenseAqualityDmaintenanceProvides comprehensive PC control capabilities including file operations (read, write, edit, delete), directory management, file search, and shell command execution through the Model Context Protocol.11-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dedcode14/DedcodeMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server