mcp-server-chart vs TAM-MCP-Server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | TAM-MCP-Server by gvaibhav | |
|---|---|---|
| Stars | ★ 4,068 | ★ 29 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
TAM-MCP-Server · Summary
A comprehensive MCP server for market sizing analysis with 28 tools, 15 business prompts, and integration with 8 economic data sources.
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
TAM-MCP-Server · Use cases
- Conduct market sizing analysis and TAM/SAM calculations for business planning
- Access real-time financial and economic data for investment analysis
- Generate business strategy prompts for funding pitches and market entry plans
- Perform competitive intelligence and industry analysis
- Create market forecasts and identify growth opportunities
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"]
}
}
}TAM-MCP-Server · Install
Installation
Prerequisites
- Node.js 20.x or later
- npm or yarn
- API keys for data sources (optional)
Quick Setup
# Clone repository
git clone https://github.com/gvaibhav/TAM-MCP-Server.git
cd TAM-MCP-Server
# Install dependencies
npm install
# Configure environment
cp .env.example .env
# Edit .env with your API keys
# Build and start (HTTP - recommended)
npm run build
npm run start:httpClaude Desktop Integration
Add to your configuration:
{
"mcpServers": {
"tam": {
"command": "npm",
"args": ["run", "start:http"],
"cwd": "/path/to/TAM-MCP-Server"
}
}
}