mcp-server-chart vs pentest-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | pentest-mcp-server by LayeSec006 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
pentest-mcp-server · Summary
A production-ready MCP server that enables AI agents to perform autonomous penetration testing on Linux systems via SSH with persistent tmux sessions.
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
pentest-mcp-server · Use cases
- Automated red team operations with multi-step reconnaissance and exploitation
- CTF challenge solving with interactive tools and long-running operations
- Security research with persistent vulnerability assessment workflows
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"]
}
}
}pentest-mcp-server · Install
Installation
- Clone and install the package:
git clone https://github.com/LayeSec006/pentest-mcp-server.git
cd pentest-mcp-server
pip install -e .- Configure your target system:
cp .env.example .env
# Edit .env with your target system details- Install tmux on the target system:
ssh kali@<TARGET_HOST>
sudo apt update && sudo apt install tmux # For Debian/Ubuntu/Kali
sudo pacman -S tmux # For Arch/BlackArch
sudo dnf install tmux # For Fedora
exit- Test the installation:
python -m pytest tests/ -vClaude Desktop Integration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"pentest-mcp": {
"command": "python",
"args": ["-m", "pentest_mcp_server"],
"env": {
"TARGET_HOST": "192.168.1.100",
"TARGET_USER": "kali",
"TARGET_PASSWORD": "your_password"
}
}
}
}