mcp-server-chart vs reddit-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | reddit-mcp by Arindam200 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 285 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | social-mediaWeb ScrapingAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
reddit-mcp · Summary
MCP server providing access to Reddit data through PRAW API, with both read-only and authenticated functionality.
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
reddit-mcp · Use cases
- Social media content analysis and engagement tracking
- AI-driven community research and trend identification
- Automated content creation and interaction on Reddit
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"]
}
}
}reddit-mcp · Install
- Clone the repository:
git clone https://github.com/Arindam200/reddit-mcp.git
cd reddit-mcp- Configure MCP server in your Claude Desktop config file (
~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"reddit": {
"command": "{{PATH_TO_UV}}",
"args": [
"--directory",
"{{PATH_TO_SRC}}",
"run",
"server.py"
],
"env": {
"REDDIT_CLIENT_ID": "your_client_id",
"REDDIT_CLIENT_SECRET": "your_client_secret",
"REDDIT_USERNAME": "your_username",
"REDDIT_PASSWORD": "your_password"
}
}
}
}- Restart Claude Desktop. Obtain Reddit API credentials from [Reddit's app preferences page](https://www.reddit.com/prefs/apps).