mcp-server-chart vs amazon-sp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | amazon-sp-mcp by mansournorouzi | |
|---|---|---|
| Stars | ★ 4,068 | ★ 29 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | E-commerceFinanceProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
amazon-sp-mcp · Summary
Amazon SP-API MCP server connects Claude to Seller Central for sales, inventory, orders, and financial data using LWA OAuth authentication.
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
amazon-sp-mcp · Use cases
- Automate sales and inventory analysis through natural language queries
- Track reimbursements, settlements, and fees without logging into Seller Central
- Generate performance reports for specific products or time periods
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"]
}
}
}amazon-sp-mcp · Install
# Clone and install
git clone https://github.com/mansournorouzi/amazon-sp-mcp.git
cd amazon-sp-mcp
npm install
npm run build
# Configure credentials
cp .env.example .env
# Edit .env with your LWA credentials, Seller ID, Marketplace ID
# For Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
```json
{
"mcpServers": {
"amazon-seller": {
"command": "node",
"args": ["/path/to/amazon-sp-mcp/build/index.js"],
"env": {
"LWA_CLIENT_ID": "amzn1.application-oa2-client.xxxxx",
"LWA_CLIENT_SECRET": "your_secret",
"LWA_REFRESH_TOKEN": "Atzr|your_token",
"SELLER_ID": "your_seller_id",
"MARKETPLACE_ID": "ATVPDKIKX0DER",
"SP_API_ENDPOINT": "https://sellingpartnerapi-na.amazon.com"
}
}
}
}