mcp-1c vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-1c by feenlace | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 98 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsDatabase | File SystemDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | this month | this month |
mcp-1c · Summary
MCP server for 1C:Enterprise that provides AI assistants with metadata and generates accurate BSL code through 9 tools.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-1c · Use cases
- AI assistants analyzing 1C configuration structure and generating accurate BSL code
- Code search and refactoring assistance across 1C modules
- Query optimization and validation for 1C databases
- BSL syntax help for developers working with 1C:Enterprise
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-1c · Install
Installation
- Download the binary for your OS from [Releases](https://github.com/feenlace/mcp-1c/releases)
- Install the extension in your 1C database:
```bash # Windows mcp-1c --install "C:\путь\к\базе"
# macOS / Linux mcp-1c --install ~/Documents/InfoBase ```
- Start the HTTP service for 1C
- Configure your AI client with the MCP server:
{
"mcpServers": {
"1c": {
"command": "/path/to/mcp-1c",
"args": ["--base", "http://localhost:8080/hs/mcp-1c"]
}
}
}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.