mcp-server-chart vs cheat-engine-server-python
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cheat-engine-server-python by bethington | |
|---|---|---|
| Stars | ★ 4,068 | ★ 49 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSecurityOther |
| Language | TypeScript | Python |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
cheat-engine-server-python · Summary
MCP Cheat Engine Server provides safe read-only memory access for debugging and analysis.
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
cheat-engine-server-python · Use cases
- Debugging applications by examining memory contents without modifying them
- Security research through safe memory analysis of target processes
- Game modding and understanding game mechanics via memory inspection
- Educational purposes for learning about computer memory and reverse engineering
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"]
}
}
}cheat-engine-server-python · Install
Installation
Prerequisites
- Windows 10/11 (64-bit recommended)
- Python 3.9 or higher
- Administrator privileges (for memory access)
- Claude Desktop or compatible MCP client
Steps
- Clone or download the project to your computer
- Open PowerShell as Administrator
- Navigate to the server directory
- Install dependencies:
pip install -r requirements.txt - Test the server:
python server/main.py --test - Start the server:
python server/main.py
Claude Desktop Configuration
Add to your Claude Desktop config file (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"cheat-engine": {
"command": "python",
"args": ["path\\to\\server\\main.py", "--debug", "--read-only"],
"cwd": "path\\to\\cheat-engine-server-python"
}
}
}Restart Claude Desktop after adding the configuration.