mcp-server-chart vs tfmcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | tfmcp by nwiizo | |
|---|---|---|
| Stars | ★ 4,068 | ★ 364 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsSecurity |
| Language | TypeScript | Rust |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
tfmcp · Summary
tfmcp is a comprehensive Terraform MCP server enabling AI assistants to manage infrastructure with 31 specialized 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
tfmcp · Use cases
- AI assistant managing Terraform infrastructure through natural language commands
- Infrastructure as Code analysis and refactoring recommendations
- Automated Terraform plan review and risk assessment
- Workspace management across multiple environments
- Terraform module search and integration assistance
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"]
}
}
}tfmcp · Install
Installation
From Crates.io
cargo install tfmcpUsing Docker
git clone https://github.com/nwiizo/tfmcp
cd tfmcp
docker build -t tfmcp .
docker run -it tfmcpClaude Desktop Integration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"tfmcp": {
"command": "/path/to/your/tfmcp",
"args": ["mcp"],
"env": {
"HOME": "/Users/yourusername",
"PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin",
"TERRAFORM_DIR": "/path/to/your/terraform/project"
}
}
}
}