MCP Catalogs
Home

mcp-bsl-platform-context

by alkoleft·165·Score 48

MCP server providing 1C:Enterprise platform syntax and object model reference for AI assistants.

developer-toolsai-llmknowledge-graph
25
Forks
10
Open issues
2 mo ago
Last commit
2d ago
Indexed

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:

you:AI-assisted development of 1C:Enterprise applications with contextual syntax help
you:Real-time lookup of 1C platform objects and methods during coding
you:Integration of 1C:Enterprise documentation into AI-powered IDEs

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 README
  • search

    Поиск по API платформы 1С Предприятие

  • info

    Получение детальной информации об элементе API

  • getMember

    Получение информации о методе или свойстве конкретного типа

  • getMembers

    Получение полного списка всех методов и свойств для указанного типа

  • getConstructors

    Получение списка конструкторов для указанного типа

Comparable tools

bsl-context1c-syntax-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 build

Run 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

GitHub →

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