mcp-server-chart vs line-bot-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | line-bot-mcp-server by line | |
|---|---|---|
| Stars | ★ 4,068 | ★ 583 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
line-bot-mcp-server · Summary
LINE Bot MCP Server connects AI agents to LINE Official Accounts via 12 tools for messaging, profile retrieval, and rich menu management.
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
line-bot-mcp-server · Use cases
- Automated customer support chatbot for LINE Official Account
- Broadcasting promotional messages to all LINE followers
- Creating interactive rich menus for enhanced user experience
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"]
}
}
}line-bot-mcp-server · Install
Installation
Prerequisites
- Node.js v20 or later
- LINE Official Account with Messaging API enabled
Step 1: Get LINE Credentials
- Create a LINE Official Account at https://developers.line.biz/en/docs/messaging-api/getting-started/#create-oa
- Enable Messaging API for your account
- Get your Channel Access Token: https://developers.line.biz/en/docs/basics/channel-access-token/#long-lived-channel-access-token
- Get your Destination User ID: https://developers.line.biz/en/docs/messaging-api/getting-user-ids/#get-own-user-id
Step 2: Install with npx
Add to your Claude Desktop config:
{
"mcpServers": {
"line-bot": {
"command": "npx",
"args": [
"@line/line-bot-mcp-server"
],
"env": {
"CHANNEL_ACCESS_TOKEN": "YOUR_TOKEN",
"DESTINATION_USER_ID": "YOUR_USER_ID"
}
}
}
}Step 3: Install with Docker
docker run -i --rm -e CHANNEL_ACCESS_TOKEN="YOUR_TOKEN" -e DESTINATION_USER_ID="YOUR_USER_ID" line/line-bot-mcp-server