mcp-server-chart vs mcp-1c
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-1c by feenlace | |
|---|---|---|
| Stars | ★ 4,068 | ★ 98 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsDatabase |
| Language | TypeScript | Go |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-1c · Summary
MCP server for 1C:Enterprise that provides AI assistants with metadata and generates accurate BSL code through 9 tools.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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"]
}
}
}