mcp-server-chart vs miniflux-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | miniflux-mcp by tssujt | |
|---|---|---|
| Stars | ★ 4,068 | ★ 12 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityCommunicationDeveloper Tools |
| Language | TypeScript | Go |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
miniflux-mcp · Summary
A Go-based MCP server providing 40+ tools for managing Miniflux RSS reader feeds, entries, and categories.
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
miniflux-mcp · Use cases
- AI assistants retrieving and summarizing RSS feeds and articles
- Automating RSS feed management through natural language commands
- Creating workflows that trigger actions based on unread articles
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"]
}
}
}miniflux-mcp · Install
Installation
Using Docker
docker build -t miniflux-mcp .
docker run --env-file .env miniflux-mcpEnvironment Variables
| Variable | Description | Required | |----------|-------------|----------| | MINIFLUX_URL | Your Miniflux instance URL | Yes | | MINIFLUX_API_KEY | API key for authentication | Yes* | | MINIFLUX_USERNAME | Username for basic auth | Yes* | | MINIFLUX_PASSWORD | Password for basic auth | Yes* |
*Either use MINIFLUX_API_KEY OR both MINIFLUX_USERNAME and MINIFLUX_PASSWORD
Claude Desktop Integration
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"miniflux": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"MINIFLUX_URL",
"-e",
"MINIFLUX_API_KEY",
"jwonder/miniflux-mcp:latest"
],
"env": {
"MINIFLUX_URL": "https://your-miniflux-instance.com",
"MINIFLUX_API_KEY": "your_api_key_here"
}
}
}
}