Airbnb-StockScreener-Agent-with-MCP vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
Airbnb-StockScreener-Agent-with-MCP by ambideXtrous9 | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 0 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 27 | 84 |
| Official | — | — |
| Categories | FinanceAI / LLM ToolsWeb Scraping | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Jupyter Notebook | TypeScript |
| Last commit | 9 mo ago | this month |
Airbnb-StockScreener-Agent-with-MCP · Summary
A local stock analysis MCP server using LangChain, Ollama Qwen3, and BeautifulSoup for financial data.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Airbnb-StockScreener-Agent-with-MCP · Use cases
- Perform detailed stock analysis for individual companies
- Extract financial metrics and profit trends for investment research
- Analyze shareholding patterns and institutional ownership
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
Airbnb-StockScreener-Agent-with-MCP · Install
- Install prerequisites:
``bash pip install langchain langchain-community langchain-core beautifulsoup4 ollama ollama pull qwen3 ``
- Clone the repository and install requirements:
``bash git clone <repository_url> pip install -r requirements.txt ``
- Configure MCP server in Claude Desktop (or compatible client):
``json { "mcpServers": { "stock": { "command": "python", "args": ["StockMcp.py"], "transport": "stdio" } } } ``
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"]
}
}
}