Airbnb-StockScreener-Agent-with-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Airbnb-StockScreener-Agent-with-MCP by ambideXtrous9 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 27 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsWeb Scraping | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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" } } } ``
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything