mcp-server-chart vs slither-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | slither-mcp by trailofbits | |
|---|---|---|
| Stars | ★ 4,068 | ★ 89 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSecurityAI / LLM 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.
slither-mcp · Summary
An MCP server wrapping Slither for static analysis of Solidity smart contracts.
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
slither-mcp · Use cases
- Security auditing of smart contracts by identifying potential vulnerabilities
- Code documentation generation for Solidity projects
- Automated analysis of contract inheritance hierarchies and function relationships
- Integration with LLM assistants to provide contextual information about Solidity code
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"]
}
}
}slither-mcp · Install
Installation
This project uses UV for package management:
# Install dependencies
uv sync
# Or install in development mode
uv pip install -e .Usage
Basic Usage
Start the Slither MCP server:
uv run slither-mcpClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"slither-mcp": {
"command": "uvx",
"args": ["--from", "git+https://github.com/trailofbits/slither-mcp", "slither-mcp"]
}
}
}