mcp-server-chart vs mcp_review_code_tool
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp_review_code_tool by wenkil | |
|---|---|---|
| Stars | ★ 4,068 | ★ 13 |
| 30d uses | 10,239 | — |
| Score | 84 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | HTML |
| Last commit | this month | 13 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_review_code_tool · Summary
MCP server for code review using OpenAI API to analyze and review code files.
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_review_code_tool · Use cases
- Automating code review processes in development workflows
- Integrating AI-powered code analysis into IDEs via MCP
- Generating detailed code quality reports and suggestions
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_review_code_tool · Install
Installation Steps
- Clone the repository:
git clone [repository url]
cd mcp_review_code_tool- Install dependencies:
npm install- Build the project:
npm run build- Configure MCP server in your MCP configuration (e.g., Claude Desktop):
{
"mcpServers": {
"code-review": {
"command": "node",
"args": ["/path/to/dist/mcp_code_review.js"],
"env": {
"OPENAI_API_KEY": "your-api-key",
"OPENAI_API_BASE": "https://openrouter.ai/api/v1",
"OPENAI_API_MODEL": "qwen/qwen-2.5-coder-32b-instruct:free"
}
}
}
}