MCP Catalogs
HomeVerzeichnis-Server-MCP screenshot

Verzeichnis-Server-MCP

by stephanj79·2·Score 32

A C# MCP server providing secure, controlled file system operations for AI agents.

file-systemdeveloper-toolsproductivity
0
Forks
0
Open issues
9 mo ago
Last commit
2d ago
Indexed

Overview

Verzeichnis-Server-MCP is a robust C# backend that implements the Model Context Protocol to enable AI agents to interact securely with local file systems. The server provides well-defined tools for file and directory operations including listing, reading, writing, copying, moving, and deleting files and directories. It supports both text and media file handling, returning base64 data with appropriate MIME types for media files. The implementation appears to be particularly suited for integration with workflow automation platforms like N8N, as demonstrated in the documentation.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Automating file management tasks through AI agents in workflow systems
you:Secure file system access for AI applications in restricted environments
you:Integration with N8N for automated document processing workflows
you:What file types are supported by this MCP server?
you:Can this server be used with other workflow automation tools besides N8N?

When to choose this

Choose this server when you need a .NET-based solution for secure file system access in AI workflows, especially if you're already using N8N.

When NOT to choose this

Don't choose this server if you need non-.NET environments, as it's limited to C#/.NET runtime and requires Windows for optimal performance.

Tools this server exposes

9 tools extracted from the README
  • directory_list

    Returns the content of a specified directory. Supports recursive and non-recursive searches.

  • copy_file

    Copies a file from a source to a destination path.

  • move_file

    Moves or renames a file.

  • delete_file

    Securely removes a specific file.

  • read_text_file

    Reads the content of a text file and returns it as a string.

  • read_media_file

    Reads an image or audio file. Returns base64 data with the appropriate MIME type.

  • write_text_file

    Writes a string to a text file (creates or overwrites it).

  • create_directory

    Creates a new directory at the specified path.

  • delete_directory

    Removes an empty or full directory.

Comparable tools

filesystem-mcpfile-system-proxyshell-mcp

Installation

Installation

  1. Clone the repository: git clone https://github.com/stephanj79/Verzeichnis-Server-MCP.git
  2. Build the project using Visual Studio or the .NET CLI: dotnet build
  3. Run the server: dotnet run

Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "filesystem-mcp": {
      "command": "dotnet",
      "args": ["run", "--project", "path/to/Verzeichnis-Server-MCP"],
      "env": {}
    }
  }
}

FAQ

What file types are supported by this MCP server?
The server supports text files and media files (images, audio). Media files are returned as base64 data with appropriate MIME types.
Can this server be used with other workflow automation tools besides N8N?
While the documentation specifically shows N8N integration, the server implements standard MCP and should be compatible with any MCP client that supports file system operations.

Compare Verzeichnis-Server-MCP with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.