mcp-server-chart vs Verzeichnis-Server-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Verzeichnis-Server-MCP by stephanj79 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 32 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | C# |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Verzeichnis-Server-MCP · Summary
A C# MCP server providing secure, controlled file system operations for AI agents.
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
Verzeichnis-Server-MCP · Use cases
- Automating file management tasks through AI agents in workflow systems
- Secure file system access for AI applications in restricted environments
- Integration with N8N for automated document processing 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"]
}
}
}Verzeichnis-Server-MCP · Install
Installation
- Clone the repository:
git clone https://github.com/stephanj79/Verzeichnis-Server-MCP.git - Build the project using Visual Studio or the .NET CLI:
dotnet build - Run the server:
dotnet run
Claude Desktop Configuration
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"filesystem-mcp": {
"command": "dotnet",
"args": ["run", "--project", "path/to/Verzeichnis-Server-MCP"],
"env": {}
}
}
}