StockScreener MCP with Langchain
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"airbnb-stockscreener-agent-with-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This project demonstrates how to build a fully local AI assistant that provides detailed stock analysis using:
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / analytics
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
MCP Security Weekly
Get CVE alerts and security updates for Airbnb StockScreener Agent With MCP and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This project demonstrates how to build a fully local AI assistant that provides detailed stock analysis using:
MCP (Model Context Protocol): Enables structured tool usage by the language model.
Ollama: A tool for running large language models locally.(Qwen3)
LangChain: A framework for developing applications powered by language models and run as MCP Client
BeautifulSoup: For web scraping financial data from Screener.in.
🔍 Company Details: Retrieve company name, current price, market cap, PE ratio, ROE, ROCE, and more.
📈 Profit Analysis: Extract quarterly and yearly net profit data.
👥 Shareholding Patterns: Analyze holdings by promoters, DIIs, FIIs, and the public.
🔧 Tool Integration: Seamless integration with MCP tools for enhanced functionality.
MCP Server Setup
The MCP server is defined in mcp_config.json.
{
"mcpServers": {
"stock": {
"command": "python",
"args": ["StockMcp.py"],
"transport": "stdio"
}
}
}
Give me the company details of CREDITACC.NS
├── StockMcp.py # MCP server with tool definitions
├── requirements.txt # Python dependencies
├── README.md # Project documentation
MCP Github
Ollama Documentation
LangChain MCP Documentation
BeautifulSoup Documentation