AuthorProfileMCP vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
AuthorProfileMCP by alperenkocyigit | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 2 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 34 | 84 |
| Official | — | — |
| Categories | Knowledge GraphAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 6 mo ago | this month |
AuthorProfileMCP · Summary
Academic author network MCP server for analyzing research collaborations and extracting keywords from scholarly profiles.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
AuthorProfileMCP · Use cases
- Academic research collaboration discovery
- Research trend analysis through author keywords
- Building academic network visualizations
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
AuthorProfileMCP · Install
# Clone repository
git clone https://github.com/alperenkocyigit/AuthorProfileMCP.git
cd AuthorProfileMCP
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Run server
python server.pyFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"author-profile": {
"command": "python",
"args": ["/path/to/AuthorProfileMCP/server.py"]
}
}
}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"]
}
}
}