MCP Catalogs
Home

EDT-MCP vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

EDT-MCP
by DitriXNew
filesystem
by modelcontextprotocol
Stars★ 156★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageJavaTypeScript
Last committhis monththis month

EDT-MCP · Summary

MCP server for 1C:EDT that enables AI assistants to interact with development workspace through 56 specialized tools.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

EDT-MCP · Use cases

  • AI-powered code analysis and refactoring in 1C:EDT projects
  • Intelligent error detection and resolution assistance
  • Automated documentation generation and content assist
  • Debug support with real-time variable inspection and breakpoints
  • Metadata management with custom tagging and grouping

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

EDT-MCP · Install

Installation

**EDT 2026.1+** (plugin v1.27.0+; use v1.26.1 for EDT 2025.x)

From Update Site

  1. In EDT: **Help → Install New Software...**
  2. Add update site URL: https://ditrixnew.github.io/EDT-MCP/
  3. Select **EDT MCP Server Feature**
  4. Restart EDT

Configuration

Go to **Window → Preferences → MCP Server** to configure settings including server port, auto-start, and tool management.

Claude Desktop Integration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "EDT MCP Server": {
      "url": "http://localhost:8765/mcp"
    }
  }
}

filesystem · Install

Installation

Using NPX

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

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.