mcp-bsl-platform-context vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-bsl-platform-context by alkoleft | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 165 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | File SystemDeveloper ToolsProductivity |
| Language | Kotlin | TypeScript |
| Last commit | 2 mo ago | this month |
mcp-bsl-platform-context · Summary
MCP server providing 1C:Enterprise platform syntax and object model reference for AI assistants.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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 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"
]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.