mcp-server-chart vs ReActMCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ReActMCP by mshojaei77 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 143 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SearchAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 14 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ReActMCP · Summary
ReActMCP is an MCP server that integrates web search capabilities with AI assistants using the Exa API.
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
ReActMCP · Use cases
- Enhancing AI assistants with real-time web search capabilities
- Building research tools that need current information from the web
- Creating custom AI applications that require up-to-date knowledge retrieval
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"]
}
}
}ReActMCP · Install
Installation
- Clone the repository:
git clone https://github.com/mshojaei77/ReActMCP.git
cd ReActMCP- Install dependencies:
pip install -r requirements.txt- Set up environment variables:
EXA_API_KEY=your_exa_api_key_here
OPENAI_API_KEY=...- Run the server:
python servers/web_search.pyClaude Desktop Configuration
{
"mcpServers": {
"websearch": {
"command": "python",
"args": ["path/to/servers/exa_web_search.py"]
}
}
}