MCP (Model Context Protocol) server plugin for 1C:EDT, enabling AI assistants (Claude, GitHub Copilot, Cursor, etc.) to interact with EDT workspace.
- 🔧 MCP Protocol 2025-11-25 - Streamable HTTP transport with SSE support
- 📊 Project Information - List workspace projects and configuration properties
- 🔴 Error Reporting - Get errors, warnings, problem summaries with filters
- 📝 Check Descriptions - Get check documentation from markdown files
- 🔄 Project Revalidation - Trigger revalidation when validation gets stuck
- 🔖 Bookmarks & Tasks - Access bookmarks and TODO/FIXME markers
- 💡 Content Assist - Get type info, method hints and platform documentation at any code position
- 🚀 Application Management - Get applications, update database, launch in debug mode
- 🎯 Status Bar - Real-time server status with tool name, execution time, and interactive controls
- ⚡ Interruptible Operations - Cancel long-running operations and send signals to AI agent
- 🏷️ Metadata Tags - Organize objects with custom tags, filter Navigator, keyboard shortcuts (Ctrl+Alt+1-0), multiselect support
- 📁 Metadata Groups - Create custom folder hierarchy in Navigator tree per metadata collection
Only EDT 2025.2.0+
- In EDT: Help → Install New Software...
- Add update site URL
- Select EDT MCP Server Feature
- Restart EDT
Go to Window → Preferences → MCP Server:
- Server Port: HTTP port (default: 8765)
- Check descriptions folder: Path to check description markdown files
- Auto-start: Start server on EDT launch
- Plain text mode (Cursor compatibility): Returns results as plain text instead of embedded resources (for AI clients that don't support MCP resources)
The MCP server status bar shows real-time execution status with interactive controls.
Status Indicator:
- 🟢 Green - Server running, idle
- 🟡 Yellow blinking - Tool is executing
- ⚪ Grey - Server stopped
User Signal Controls - Send signals to AI agent during tool execution
During Tool Execution:
- Shows tool name (e.g.,
MCP: update_database) - Shows elapsed time in MM:SS format
- Click to access control menu
When a tool is executing, you can send signals to the AI agent to interrupt the MCP call:
| Button | Description | When to Use |
|---|---|---|
| Cancel Operation | Stops the MCP call and notifies agent | When you want to cancel a long-running operation |
| Retry | Tells agent to retry the operation | When an EDT error occurred and you want to try again |
| Continue in Background | Notifies agent the operation is long-running | When you want agent to check status periodically |
| Ask Expert | Stops and asks agent to consult with you | When you need to provide guidance |
| Send Custom Message... | Send a custom message to agent | For any custom instruction |
How it works:
- When you click a button, a dialog appears showing the message that will be sent to the agent
- You can edit the message before sending
- The MCP call is immediately interrupted and returns control to the agent
- The EDT operation continues running in the background
- Agent receives a response like:
USER SIGNAL: Your message here
Signal Type: CANCEL
Tool: update_database
Elapsed: 20s
Note: The EDT operation may still be running in background.
Use cases:
- Long-running operations (full database update, project validation) blocking the agent
- Need to give the agent additional instructions
- EDT showed an error dialog and you want agent to retry
- Want to switch agent's focus to a different task
Create .vscode/mcp.json:
{
"servers": {
"EDT MCP Server": {
"type": "sse",
"url": "http://localhost:8765/mcp"
}
}
}Other AI Assistants - Cursor, Claude Code, Claude Desktop
Note: Cursor doesn't support MCP embedded resources. Enable "Plain text mode (Cursor compatibility)" in EDT preferences: Window → Preferences → MCP Server.
Create .cursor/mcp.json:
{
"mcpServers": {
"EDT MCP Server": {
"url": "http://localhost:8765/mcp"
}
}
}Note: By editing the file
.claude.jsoncan be added to the MCP either to a specific project or to any project (at the root). If there is no mcpServers section, add it.
Add to .claude.json (in Windows %USERPROFILE%\.claude.json):
"mcpServers": {
"EDT MCP Server": {
"type": "http",
"url": "http://localhost:8765/mcp"
}
}Add to claude_desktop_config.json:
{
"mcpServers": {
"EDT MCP Server": {
"url": "http://localhost:8765/mcp"
}
}
}| Tool | Description |
|---|---|
get_edt_version |
Returns current EDT version |
list_projects |
Lists workspace projects with properties |
get_configuration_properties |
Gets 1C configuration properties |
get_project_errors |
Returns EDT problems with severity/checkId/objects filters |
get_problem_summary |
Problem counts grouped by project and severity |
clean_project |
Cleans project markers and triggers full revalidation |
revalidate_objects |
Revalidates specific objects by FQN (e.g. "Document.MyDoc") |
get_bookmarks |
Returns workspace bookmarks |
get_tasks |
Returns TODO/FIXME task markers |
get_check_description |
Returns check documentation from .md files |
get_content_assist |
Get content assist proposals (type info, method hints) |
get_platform_documentation |
Get platform type documentation (methods, properties, constructors) |
get_metadata_objects |
Get list of metadata objects from 1C configuration |
get_metadata_details |
Get detailed properties of metadata objects (attributes, tabular sections, etc.) |
find_references |
Find all references to a metadata object (in metadata, BSL code, forms, roles, etc.) |
get_tags |
Get list of all tags defined in the project with descriptions and object counts |
get_objects_by_tags |
Get metadata objects filtered by tags with tag descriptions and object FQNs |
get_applications |
Get list of applications (infobases) for a project with update state |
update_database |
Update database (infobase) with full or incremental update mode |
debug_launch |
Launch application in debug mode (auto-updates database before launch) |
Tool Details - Parameters and usage examples for each tool
get_content_assist - Get content assist proposals at a specific position in BSL code. Returns type information, available methods, properties, and platform documentation.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
Yes | EDT project name |
filePath |
Yes | Path relative to src/ folder (e.g. CommonModules/MyModule/Module.bsl) |
line |
Yes | Line number (1-based) |
column |
Yes | Column number (1-based) |
limit |
No | Maximum proposals to return (default: from preferences) |
offset |
No | Skip first N proposals (for pagination, default: 0) |
contains |
No | Filter by display string containing these substrings (comma-separated, e.g. Insert,Add) |
extendedDocumentation |
No | Return full documentation (default: false, only display string) |
Important Notes:
- Save the file first - EDT must read the current content from disk to provide accurate proposals
- Column position - Place cursor after the dot (
.) for method/property suggestions - Pagination - Use
offsetto get next batch of proposals (e.g., first call with limit=5, second call with offset=5, limit=5) - Filtering - Use
containsto filter by method/property name (case-insensitive) - Works for:
- Global platform methods (e.g.
NStr(,Format() - Methods after dot (e.g.
Structure.Insert,Array.Add) - Object properties and fields
- Configuration objects and modules
- Global platform methods (e.g.
clean_project: Refreshes project from disk, clears all validation markers, and triggers full revalidation using EDT's ICheckSchedulerrevalidate_objects: Revalidates specific metadata objects by their FQN:Document.MyDocument,Catalog.MyCatalog,CommonModule.MyModuleDocument.MyDoc.Form.MyFormfor nested objects
get_project_errors - Get detailed configuration problems from EDT with multiple filter options.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
No | Filter by project name |
severity |
No | Filter by severity: ERRORS, BLOCKER, CRITICAL, MAJOR, MINOR, TRIVIAL |
checkId |
No | Filter by check ID substring (e.g. ql-temp-table-index) |
objects |
No | Filter by object FQNs (array). Returns errors only from specified objects |
limit |
No | Maximum results (default: 100, max: 1000) |
Objects filter format:
- Array of FQN strings:
["Document.SalesOrder", "Catalog.Products"] - Case-insensitive partial matching
- Matches against error location (objectPresentation)
- FQN examples:
Document.SalesOrder- all errors in documentCatalog.Products- all errors in catalogCommonModule.MyModule- all errors in common moduleDocument.SalesOrder.Form.ItemForm- errors in specific form
get_platform_documentation - Get documentation for platform types (ValueTable, Array, Structure, Query, etc.) and built-in functions (FindFiles, Message, Format, etc.)
Parameters:
| Parameter | Required | Description |
|---|---|---|
typeName |
Yes | Type or function name (e.g. ValueTable, Array, FindFiles, Message) |
category |
No | Category: type (platform types), builtin (built-in functions). Default: type |
projectName |
No | EDT project name (uses first available project if not specified) |
memberName |
No | Filter by member name (partial match) - only for type category |
memberType |
No | Filter: method, property, constructor, event, all (default: all) - only for type category |
language |
No | Output language: en or ru (default: en) |
limit |
No | Maximum results (default: 50) - only for type category |
get_metadata_objects - Get list of metadata objects from 1C configuration.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
Yes | EDT project name |
metadataType |
No | Filter: all, documents, catalogs, informationRegisters, accumulationRegisters, commonModules, enums, constants, reports, dataProcessors, exchangePlans, businessProcesses, tasks, commonAttributes, eventSubscriptions, scheduledJobs (default: all) |
nameFilter |
No | Partial name match filter (case-insensitive) |
limit |
No | Maximum results (default: 100) |
language |
No | Language code for synonyms (e.g. en, ru). Uses configuration default if not specified |
get_metadata_details - Get detailed properties of metadata objects.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
Yes | EDT project name |
objectFqns |
Yes | Array of FQNs (e.g. ["Catalog.Products", "Document.SalesOrder"]) |
full |
No | Return all properties (true) or only key info (false). Default: false |
language |
No | Language code for synonyms. Uses configuration default if not specified |
find_references - Find all references to a metadata object. Returns all places where the object is used: in other metadata objects, BSL code, forms, roles, subsystems, etc. Matches EDT's built-in "Find References" functionality.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
Yes | EDT project name |
objectFqn |
Yes | Fully qualified name (e.g. Catalog.Products, Document.SalesOrder, CommonModule.Common) |
limit |
No | Maximum results per category (default: 100, max: 500) |
Returns markdown with references in EDT-compatible format:
# References to Catalog.Items
**Total references found:** 122
- Catalog.ItemKeys - Attributes.Item.Type - Type: types
- Catalog.ItemKeys.Form.ChoiceForm.Form - Items.List.Item.Data path - Type: types
- Catalog.Items - Attributes.PackageUnit.Choice parameter links - Ref
- Catalog.Items.Form.ItemForm.Form - Items.GroupTop.GroupMainAttributes.Code.Data path - Type: types
- CommonAttribute.Author - Content - metadata
- Configuration - Catalogs - catalogs
- DefinedType.typeItem - Type - Type: types
- EventSubscription.BeforeWrite_CatalogsLockDataModification - Source - Type: types
- Role.FullAccess.Rights - Role rights - object
- Subsystem.Settings.Subsystem.Items - Content - content
### BSL Modules
- CommonModules/GetItemInfo/Module.bsl [Line 199; Line 369; Line 520]
- Catalogs/Items/Forms/ListForm/Module.bsl [Line 18; Line 19]Reference types included:
- Metadata references - Attributes, form items, command parameters, type descriptions
- Type usages - DefinedTypes, ChartOfCharacteristicTypes, type compositions
- Common attributes - Objects included in common attribute content
- Event subscriptions - Source objects for subscriptions
- Roles - Objects with role permissions
- Subsystems - Subsystem content
- BSL code - References in BSL modules with line numbers
get_tags - Get list of all tags defined in the project. Tags are user-defined labels for organizing metadata objects.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
Yes | EDT project name |
Returns: Markdown table with tag name, color, description, and number of assigned objects.
get_objects_by_tags - Get metadata objects filtered by tags. Returns objects that have any of the specified tags.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
Yes | EDT project name |
tags |
Yes | Array of tag names to filter by (e.g. ["Important", "NeedsReview"]) |
limit |
No | Maximum objects per tag (default: 100) |
Returns: Markdown with sections for each tag including:
- Tag color and description
- Table of object FQNs assigned to the tag
- Summary with total objects found
get_applications - Get list of applications (infobases) for a project. Returns application ID, name, type, and current update state. Use this to get application IDs for update_database and debug_launch tools.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
Yes | EDT project name |
update_database - Update database (infobase) configuration. Supports full and incremental update modes.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
Yes | EDT project name |
applicationId |
Yes | Application ID from get_applications |
fullUpdate |
No | If true - full reload, if false - incremental update (default: false) |
autoRestructure |
No | Automatically apply restructurization if needed (default: true) |
debug_launch - Launch application in debug mode. Automatically updates database before launching and finds existing launch configuration.
Parameters:
| Parameter | Required | Description |
|---|---|---|
projectName |
Yes | EDT project name |
applicationId |
Yes | Application ID from get_applications |
updateBeforeLaunch |
No | If true - update database before launching (default: true) |
Notes:
- Requires a launch configuration to be created in EDT first (Run → Run Configurations...)
- If no configuration exists, returns list of available configurations
updateBeforeLaunch=trueskips update if database is already up to date
- Markdown tools:
list_projects,get_project_errors,get_bookmarks,get_tasks,get_problem_summary,get_check_description- return Markdown as EmbeddedResource withmimeType: text/markdown - JSON tools:
get_configuration_properties,clean_project,revalidate_objects- return JSON withstructuredContent - Text tools:
get_edt_version- return plain text
| Endpoint | Method | Description |
|---|---|---|
/mcp |
POST | MCP JSON-RPC (initialize, tools/list, tools/call) |
/mcp |
GET | Server info |
/health |
GET | Health check |
Organize your metadata objects with custom tags for easier navigation and filtering.
Tags help you:
- Group related objects across different metadata types (e.g., all objects for a specific feature)
- Quickly find objects in large configurations
- Filter the Navigator to focus on specific areas of the project
- Share object organization with your team via version control
Assigning Tags to Objects:
- Right-click on any metadata object in the Navigator
- Select Tags from the context menu
- Check the tags you want to assign, or select Manage Tags... to create new ones
Managing Tags:
In the Manage Tags dialog you can:
- Create new tags with custom names, colors, and descriptions
- Edit existing tags (name, color, description)
- Delete tags
- See all available tags for the project
Tagged objects show their tags as a suffix in the Navigator tree:
To enable/disable tag display:
- Window → Preferences → General → Appearance → Label Decorations
- Toggle "Metadata Tags Decorator"
Filter the entire Navigator to show only objects with specific tags:
- Click the tag filter button in the Navigator toolbar (or right-click → Tags → Filter by Tag...)
- Select one or more tags
- Click Set to apply the filter
The Navigator will show only:
- Objects that have ANY of the selected tags
- Parent folders containing matching objects
To clear the filter: Click Turn Off in the dialog or use the toolbar button again.
Quickly toggle tags on selected objects using keyboard shortcuts:
| Shortcut | Action |
|---|---|
| Ctrl+Alt+1 | Toggle 1st tag |
| Ctrl+Alt+2 | Toggle 2nd tag |
| ... | ... |
| Ctrl+Alt+9 | Toggle 9th tag |
| Ctrl+Alt+0 | Toggle 10th tag |
Features:
- Works with multiple selected objects
- Supports cross-project selection (each object uses tags from its own project)
- Pressing the same shortcut again removes the tag (toggle behavior)
- Tag order is configurable in the Manage Tags dialog (Move Up/Move Down buttons)
To customize shortcuts: Window → Preferences → General → Keys → search for "Toggle Tag"
Find metadata objects that haven't been tagged yet:
- Open Filter by Tag dialog (toolbar button or Tags → Filter by Tag...)
- Check the "Show untagged objects only" checkbox
- Click Set
The Navigator will show only objects that have no tags assigned, making it easy to identify objects that need categorization.
Assign or remove tags from multiple objects at once:
- Select multiple objects in the Navigator (Ctrl+Click or Shift+Click)
- Right-click → Tags
- Select a tag to toggle it on/off for ALL selected objects
Behavior:
- ✓ Checked = all selected objects have this tag
- ☐ Unchecked = none of the selected objects have this tag
- When objects are from different projects, only objects from projects that have the tag will be affected
For advanced filtering across multiple projects, use the Tag Filter View:
Window → Show View → Other → MCP Server → Tag Filter
This view provides:
- Left panel: Select tags from all projects in your workspace
- Right panel: See all matching objects with search and navigation
- Search: Filter results by object name using regex
- Double-click: Navigate directly to the object
Tags are stored in .settings/metadata-tags.yaml file in each project. This file:
- Can be committed to version control (VCS friendly)
- Is automatically updated when you rename or delete objects
- Uses YAML format for easy readability
Example:
assignments:
CommonModule.Utils:
- Utils
Document.SalesOrder:
- Important
- Sales
tags:
- color: '#FF0000'
description: Critical business logic
name: Important
- color: '#00FF00'
description: ''
name: Utils
- color: '#0066FF'
description: Sales department documents
name: SalesOrganize your Navigator tree with custom groups to create a logical folder structure for metadata objects.
Groups help you:
- Create custom folder hierarchy in the Navigator tree
- Organize objects by business area, feature, or any logical structure
- Navigate large configurations faster with nested groups
- Separate grouped objects from ungrouped ones
Creating a Group:
- Right-click on any metadata folder (e.g., Catalogs, Common modules) in the Navigator
- Select New Group... from the context menu
- Enter the group name and optional description
- Click OK to create the group
Create Group Dialog:
Adding Objects to a Group:
- Right-click on any metadata object in the Navigator
- Select Add to Group...
- Choose the target group from the list
Removing Objects from a Group:
- Right-click on an object inside a group
- Select Remove from Group
Grouped objects appear inside their group folders in the Navigator tree:
Key Features:
- Groups are created per metadata collection (Catalogs, Common modules, Documents, etc.)
- Objects inside groups are still accessible via standard EDT navigation
- Ungrouped objects appear at the end of the list
| Action | How to Do It |
|---|---|
| Create group | Right-click folder → New Group... |
| Add object to group | Right-click object → Add to Group... |
| Remove from group | Right-click object in group → Remove from Group |
| Delete group | Right-click group → Delete |
| Rename group | Right-click group → Rename... |
Groups are stored in .settings/groups.yaml file in each project. This file:
- Can be committed to version control (VCS friendly)
- Uses YAML format for easy readability
- Is automatically updated when you rename or delete objects
Example:
groups:
- name: "Products & Inventory"
description: "Product and inventory catalogs"
path: Catalog
order: 0
children:
- Catalog.ItemKeys
- Catalog.Items
- Catalog.ItemSegments
- Catalog.Units
- Catalog.UnitsOfMeasurement
- name: "Organization"
description: "Organization structure catalogs"
path: Catalog
order: 1
children:
- Catalog.Companies
- Catalog.Stores
- name: "Core Functions"
description: "Core shared functions used across the application"
path: CommonModule
order: 0
children:
- CommonModule.CommonFunctionsClient
- CommonModule.CommonFunctionsServer
- CommonModule.CommonFunctionsClientServer
- name: "Localization"
description: "Multi-language support modules"
path: CommonModule
order: 1
children:
- CommonModule.Localization
- CommonModule.LocalizationClient
- CommonModule.LocalizationServer
- CommonModule.LocalizationReuse- 1C:EDT 2025.2 (Ruby) or later
- Java 17+
1.20.1 - Navigator toolbar buttons: Expand All, Expand Below, Collapse All
- New: Navigator toolbar buttons for tree expansion control
- Expand All: Expands all nodes in the Navigator tree
- Expand Below: Expands all children under the selected node
- Collapse All: Custom collapse button (replaces standard)
- Improved: Toolbar button layout with proper positioning
1.20.0 - Metadata Groups: custom folder hierarchy in Navigator
- New: Metadata Groups feature
- Create custom folder hierarchy in Navigator tree per metadata collection
- Organize metadata objects by business area, feature, or any logical structure
- Context menu: right-click → New Group... to create, Add to Group... to assign
- New: Group management
- Rename and delete groups via context menu
- Remove objects from groups
- Groups stored in
.settings/groups.yaml(VCS friendly)
- New: Create Group dialog
- Name and description fields
- Description supports multiline text
- Improved: Navigator integration
- Grouped objects appear inside group folders
- Ungrouped objects shown at the end
- Standard EDT navigation still works for grouped objects
1.19.0 - Tag Enhancements: keyboard shortcuts, untagged filter, multiselect
- New: Keyboard shortcuts for tags (Ctrl+Alt+1-0)
- Toggle first 10 tags with Ctrl+Alt+1 through Ctrl+Alt+0
- Works with multiple selected objects
- Supports cross-project selection
- Customizable via Window → Preferences → General → Keys
- New: Move tags up/down in Manage Tags dialog
- Reorder tags to assign frequently used tags to lower numbers
- Tag order persists and affects hotkey assignments
- New: "Show untagged objects only" filter
- Checkbox in Filter by Tag dialog
- Find objects that haven't been tagged yet
- New: Multi-select tag assignment
- Select multiple objects and assign/remove tags from context menu
- Shows aggregated state across all selected objects
- Handles objects from different projects correctly
- New: Metadata Tags feature
- Assign custom tags to any metadata object for organization
- Context menu: right-click → Tags for quick access
- Manage Tags dialog: create, edit, delete tags with colors and descriptions
- Tags stored in
.settings/metadata-tags.yaml(VCS friendly)
- New: Tag Decorator in Navigator
- Shows assigned tags as suffix:
CommonModule.MyModule [Test, Demo] - Enable/disable: Window → Preferences → General → Appearance → Label Decorations
- Shows assigned tags as suffix:
- New: Navigator Filter by Tags
- Filter entire Navigator tree to show only objects with selected tags
- OR logic: shows objects with ANY of the selected tags
- Toolbar button and context menu access
- New: Tag Filter View
- Advanced filtering across all projects in workspace
- Search by FQN with regex support
- Multi-project support
- New: Automatic YAML synchronization
- Rename/delete operations automatically update tag assignments
- Works with EDT Undo/Redo
1.18.0 - Application management: get infobases, update database, debug launch
- New:
get_applicationstool - Get list of applications (infobases) for a project- Returns application ID, name, type, and current update state
- Use this to get application IDs for
update_databaseanddebug_launchtools
- New:
update_databasetool - Update database (infobase) configuration- Supports full update (complete reload) and incremental update (changes only)
- Auto-applies restructurization when needed
- Returns detailed status before and after update
- New:
debug_launchtool - Launch application in debug mode- Automatically updates database before launching (configurable via
updateBeforeLaunchparameter) - Finds existing launch configuration for project/application
- Starts debug session directly from AI assistant
- Automatically updates database before launching (configurable via
- New: Status bar enhancements
- Shows current tool name during execution (e.g.,
MCP: update_database) - Shows elapsed time in MM:SS format
- Yellow blinking indicator during tool execution
- Wider status bar for full tool names display
- Shows current tool name during execution (e.g.,
- New: Interruptible tool execution with user signals
- Cancel long-running operations and return control to AI agent immediately
- Send signals: Cancel, Retry, Continue in Background, Ask Expert, Custom Message
- Dialog preview shows exactly what will be sent to agent
- EDT operation continues in background while agent receives immediate response
1.17.0 - Find references: search where metadata objects are used
- New:
find_referencestool - Find all references to a metadata object- Returns all places where the object is used: roles, subsystems, forms, type descriptions, etc.
- Results grouped by category (Subsystems, Roles, Forms, Type descriptions, etc.)
- Searches through produced types, predefined items, fields
- Note: BSL code references will be added in future version
1.16.0 - Plain text mode for Cursor, object filters, built-in function docs
- New: "Plain text mode (Cursor compatibility)" preference setting
- When enabled, returns Markdown results as plain text instead of embedded resources
- Solves compatibility issues with AI clients that don't support MCP embedded resources (e.g., Cursor)
- Located in: Window → Preferences → MCP Server
- New:
objectsfilter parameter forget_project_errorstool- Filter errors by specific object FQNs (e.g.
["Document.SalesOrder", "Catalog.Products"]) - Returns only errors from the specified objects
- FQN matching is case-insensitive and supports partial matches
- Filter errors by specific object FQNs (e.g.
- New: Built-in function documentation in
get_platform_documentationtool- Use
category: "builtin"to get documentation for global functions (FindFiles, Message, Format, etc.) - Returns function signature with parameters, types, optional flags, and return type
- Supports both English and Russian function names
- Use
1.9.0 - Enhanced EObject formatting for metadata tools
- Improved: Enhanced EObject formatting in metadata tools using new
EObjectInspectorutility- Smart detection of simple value holders (enums, wrappers) vs complex objects needing expansion
- Automatic extraction of primary values from wrapper classes (e.g., StandardCommandGroup → category enum)
- EMF-based detection without hardcoded class names using EAttribute/EReference analysis
- Better formatting for StandardCommandGroup, Color, Picture, and other wrapper types
- Internal: New
EObjectInspectorutility class for EMF EObject type analysis - Refactored:
AbstractMetadataFormatterandUniversalMetadataFormatternow use EObjectInspector
1.8.0 - Metadata objects and details tools
- New:
get_metadata_objectstool - Get list of metadata objects from 1C configuration- Returns Name, Synonym, Comment, Type, ObjectModule, ManagerModule for each object
- Supports filtering by metadata type (documents, catalogs, registers, commonModules, commonAttributes, eventSubscriptions, scheduledJobs, etc.)
- Supports partial name filtering (case-insensitive)
- Uses configuration default language for synonyms
- New:
get_metadata_detailstool - Get detailed properties of metadata objects- Accepts array of FQNs (e.g.
["Catalog.Products", "Document.SalesOrder"]) fullmode for complete property details- Type-specific properties (Document: posting, Catalog: hierarchy, Register: periodicity, etc.)
- Accepts array of FQNs (e.g.
1.7.0 - Platform documentation tool
- New:
get_platform_documentationtool - Get platform type documentation- Returns methods, properties, constructors, events with full documentation
- Supports all platform types: ValueTable, Array, Structure, Query, Map, etc.
- Filter by member name or type (method/property/constructor/event)
- Bilingual output (English/Russian)
- Uses EDT's IEObjectProvider with TYPE provider for accurate results
1.6.x - Content assist, JSON improvements, validation tools
1.6.16
- New:
get_content_assisttool - Get content assist proposals at any code position
1.6.10
- Refactored: All JSON responses now use Gson serialization instead of manual StringBuilder
- New:
ToolResultclass - fluent API for building JSON responses
1.6.0
- New:
clean_projecttool - clears markers and triggers full revalidation via EDT ICheckScheduler - New:
revalidate_objectstool - revalidates specific objects by FQN
1.5.x - 1.0.0 - Initial releases and core features
1.5.0 - Explicit ResponseType per tool, Markdown as EmbeddedResource
1.4.0 - Converted list tools to Markdown output
1.3.0 - MCP Protocol 2025-11-25 with Streamable HTTP, SSE transport support
1.2.0 - EDT IMarkerManager integration, EDT severity levels
1.0.0 - Initial release
Copyright (c) 2025 DitriX. All rights reserved.
EDT MCP Server v1.20.1











