mcp-bsl-platform-context
by alkoleft·★ 165·Score 48
MCP server providing 1C:Enterprise platform syntax and object model reference for AI assistants.
Overview
This MCP server enables AI assistants to access 1C:Enterprise platform documentation and reference materials. It provides tools for searching platform functions, methods, properties, and data types with fuzzy matching capabilities. The server operates in two modes: STDIO for local development and SSE for network access, making it compatible with various AI clients like Claude Desktop and Cursor IDE.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you're working with 1C:Enterprise development and want AI assistants to have direct access to platform syntax and object model documentation.
When NOT to choose this
Don't choose this if you don't work with 1C:Enterprise platform, as the documentation is specific to this Russian business application platform.
Tools this server exposes
5 tools extracted from the READMEsearchПоиск по API платформы 1С Предприятие
infoПолучение детальной информации об элементе API
getMemberПолучение информации о методе или свойстве конкретного типа
getMembersПолучение полного списка всех методов и свойств для указанного типа
getConstructorsПолучение списка конструкторов для указанного типа
Comparable tools
Installation
Installation
Prerequisites
- Java 17 or higher
- 1C:Enterprise platform version 8.3.20 or higher
Build from source
git clone https://github.com/alkoleft/mcp-bsl-platform-context.git
cd mcp-bsl-platform-context
./gradlew buildRun the server
# STDIO mode (default)
java -jar mcp-bsl-context-<version>.jar --platform-path "/path/to/1c/installation"
# SSE mode
java -jar mcp-bsl-context-<version>.jar --mode sse --platform-path "/path/to/1c/installation"Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"1c-platform": {
"command": "java",
"args": [
"-jar",
"/path/to/mcp-bsl-context.jar",
"--platform-path",
"/path/to/1c/installation"
]
}
}
}Compare mcp-bsl-platform-context with
Last updated · Auto-generated from public README + GitHub signals.