mcp-linkedin vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
mcp-linkedin by adhikasp | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 201 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 41 | 84 |
| Official | — | — |
| Categories | CommunicationDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 16 mo ago | this month |
mcp-linkedin · Summary
MCP server for LinkedIn API interactions with job search and feed retrieval tools.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-linkedin · Use cases
- Automatically retrieving LinkedIn feed posts without manual browsing
- Searching and analyzing job listings against personal resumes
- Integrating LinkedIn data into AI workflows for professional networking
- Monitoring industry trends through LinkedIn posts
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
mcp-linkedin · Install
Installation
Via Smithery:
npx -y @smithery/cli install mcp-linkedin --client claudeManual Configuration:
{
"mcpServers": {
"linkedin": {
"command": "uvx",
"args": ["--from", "git+https://github.com/adhikasp/mcp-linkedin", "mcp-linkedin"],
"env": {
"LINKEDIN_EMAIL": "your_linkedin_email",
"LINKEDIN_PASSWORD": "your_linkedin_password"
}
}
}
}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"]
}
}
}