mcp-server-chart vs dynamic-shell-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | dynamic-shell-server by codelion | |
|---|---|---|
| Stars | ★ 4,068 | ★ 41 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSecurityOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 15 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
dynamic-shell-server · Summary
A Python MCP server for secure shell command execution with dynamic approval and audit logging.
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
dynamic-shell-server · Use cases
- Securely executing shell commands through AI assistants while maintaining user control
- Creating an audit trail for all system administration tasks performed via AI interfaces
- Providing developers with a controlled way to execute build and deployment commands
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"]
}
}
}dynamic-shell-server · Install
Installation
- Clone this repository:
git clone <repository-url>
cd dynamic-shell-server- Create a virtual environment and activate it:
python -m venv venv
source venv/bin/activate # On Windows use: venv\Scripts\activate- Install dependencies:
pip install -r requirements.txtClaude Desktop Integration
- Open your Claude Desktop configuration:
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json - Windows: %APPDATA%\Claude\claude_desktop_config.json
- Add the server configuration:
{
"mcpServers": {
"shell": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["/absolute/path/to/dynamic_shell_server.py"]
}
}
}- Restart Claude Desktop