MCP Catalogs
Home

EDT-MCP vs everything

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

EDT-MCP
by DitriXNew
everything
by modelcontextprotocol
Stars★ 156★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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"
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.