mcp-server-chart vs mcp-server-mas-sequential-thinking
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-mas-sequential-thinking by FradSer | |
|---|---|---|
| Stars | ★ 4,068 | ★ 300 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsProductivityDeveloper Tools |
| Language | TypeScript | Python |
| 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-server-mas-sequential-thinking · Summary
MCP server implementing a Multi-Agent System for sequential thinking with 6 specialized AI agents.
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-server-mas-sequential-thinking · Use cases
- Complex problem-solving requiring multi-perspective analysis
- Research-intensive tasks requiring fact verification and counter-example analysis
- Creative brainstorming with cross-industry innovation research
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-server-mas-sequential-thinking · Install
- Clone the repository:
git clone https://github.com/FradSer/mcp-server-mas-sequential-thinking.git - Navigate to the project:
cd mcp-server-mas-sequential-thinking - Install dependencies:
pip install -r requirements.txt - Set up environment variables (optional):
export EXA_API_KEY=your_exa_api_key - Run the server:
python -m mcp_server_mas_sequentialthinking
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"sequential-thinking": {
"command": "python",
"args": ["-m", "mcp_server_mas_sequentialthinking"],
"env": {}
}
}
}