mcp-server-chart vs FantasyPremierLeague
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | FantasyPremierLeague by joreilly | |
|---|---|---|
| Stars | ★ 4,068 | ★ 593 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Jupyter Notebook |
| 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.
FantasyPremierLeague · Summary
Kotlin Multiplatform Fantasy Premier League app with MCP server exposing player/fixture data.
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
FantasyPremierLeague · Use cases
- Access Fantasy Premier League data through MCP protocol
- Integrate fantasy sports data into AI assistants
- Build multiplatform fantasy league applications
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"]
}
}
}FantasyPremierLeague · Install
To use the MCP server, first build it using Gradle:
cd mcp-server
./gradlew shadowJarThen, integrate it with Claude Desktop by adding this configuration to your Developer Settings:
{
"mcpServers": {
"fantasy-premier-league": {
"command": "java",
"args": [
"-jar",
"/path/to/FantasyPremierLeague/mcp-server/build/libs/serverAll.jar",
"--stdio"
]
}
}
}