mcp-1c vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-1c by feenlace | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 98 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsDatabase | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything