MCP Catalogs
Home

mcp-bsl-platform-context vs ultimate_mcp_server

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

mcp-bsl-platform-context
by alkoleft
ultimate_mcp_server
by Dicklesworthstone
Stars★ 165★ 149
30d uses
Score4885
Official
Categories
Developer ToolsAI / LLM ToolsKnowledge Graph
AI / LLM ToolsBrowser AutomationFile System
LanguageKotlinPython
Last commit2 mo ago2 mo ago

mcp-bsl-platform-context · Summary

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

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

mcp-bsl-platform-context · Use cases

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

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

mcp-bsl-platform-context · Install

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

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.