mcp-server-chart vs mcp-delphi
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-delphi by flydev-fr | |
|---|---|---|
| Stars | ★ 4,068 | ★ 17 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-delphi · Summary
MCP server for building and cleaning Delphi, Lazarus, and Free Pascal projects via MSBuild and lazbuild 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-delphi · Use cases
- Automating build processes for Delphi applications via MCP tools in AI assistants
- Cleaning build artifacts from Pascal projects without manual IDE intervention
- Building Lazarus projects with specific configurations remotely through MCP protocol
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-delphi · Install
- Install Node.js >= 18
- Clone repository:
git clone https://github.com/flydev-fr/mcp-delphi - Install dependencies:
pnpm installornpm install - Build:
pnpm run build - Configure environment variables in
.envfile (paths to rsvars.bat and MSBuild) - Run server:
node --env-file=.env dist/server.js
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-delphi": {
"command": "node",
"args": ["--env-file=.env", "/path/to/mcp-delphi/dist/server.js"]
}
}
}