financial-data-mcp-server
Uses LangChain's MCP adapters to connect the AI agent to the financial data MCP server tools.
Uses LangGraph to orchestrate the financial agent's tool selection and workflow.
Uses OpenAI's LLM to power the AI financial assistant agent that understands user questions and generates responses.
Provides a chat-based user interface for interacting with financial data through natural language.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@financial-data-mcp-serverWhat's the P/E ratio and current price of ASII stock?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐ Chat with Financial Data
An AI-powered financial data assistant that uses LLM agents, LangGraph, and Model Context Protocol (MCP) to answer questions about stocks and financial markets using real-time financial data tools.
๐ Overview
Chat with Financial Data is an AI-powered financial assistant designed to help users explore and analyze stock market information through natural language.
Instead of manually searching financial websites or running separate queries, users can simply ask questions such as:
"Give me information about ASII stock."
"What are the financial metrics of BBCA?"
"Show me the historical prices of TLKM."
"What is the P/E ratio of ASII?"
"Tell me about Astra International."
The application uses an AI agent to understand the user's question and dynamically select only the financial data tools needed to answer it.
The project uses Model Context Protocol (MCP) to provide a standardized interface between the AI agent and financial data tools.
Related MCP server: yahoo-finance-mcp-server
โจ Features
๐ค AI-Powered Financial Assistant
Users can interact with financial data using natural language instead of manually calling APIs or writing queries.
๐ MCP-Based Tool Integration
Financial data capabilities are exposed through an MCP server, allowing the AI agent to discover and use available tools dynamically.
๐ง Intelligent Tool Selection
The AI agent determines which tools are required based on the user's question.
For example:
User:
"Give me information about ASII stock."
โ
โผ
AI Agent
โ
โโโ search_stock_tool
โ
โโโ stock_info
โ
โผ
Human-readable responseThe agent does not need to execute every available tool for every question.
๐ Financial Data Tools
The current MCP server provides the following tools:
Tool | Description |
| Searches for a stock ticker and company |
| Retrieves basic company information |
| Retrieves historical stock price data |
| Retrieves key financial metrics |
| Checks MCP server availability |
๐ฌ Streamlit Chat Interface
The project provides a user-friendly Streamlit interface with:
Chat-style conversation
Persistent chat history during the session
Natural language questions
Loading indicators
Human-readable AI responses
Financial data analysis through MCP tools
๐ Chat Logging
Chat interactions can be logged for monitoring and analysis.
The log can include:
Timestamp
User question
AI response
Runtime
Tools used
Token usage
Estimated API cost
Example:
Timestamp | Question | Answer | Runtime | Tools Used | Cost |
2026-08-03 | Give me information about ASII | ... | 4.21 sec | stock_info | $0.002 |
2026-08-03 | What is ASII P/E ratio? | ... | 3.15 sec | financial_metrics | $0.001 |
Chat logs are stored locally and are excluded from GitHub using .gitignore.
๐๏ธ System Architecture
โโโโโโโโโโโโโโโโโโโโโโโโ
โ User Question โ
โโโโโโโโโโโโฌโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโ
โ Streamlit UI โ
โโโโโโโโโโโโฌโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโ
โ Financial Agent โ
โ LangGraph โ
โโโโโโโโโโโโฌโโโโโโโโโโโโ
โ
Selects required tools
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ LangChain MCP Adapter โ
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Financial Data MCP Server โ
โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ search_stock_tool โ โ
โ โ stock_info โ โ
โ โ historical_prices โ โ
โ โ financial_metrics โ โ
โ โ ping โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโ
โ
โผ
Financial Data Source
โ
โผ
AI-generated Response
โ
โโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโ
โผ โผ
Streamlit UI Chat Logger
โ
โผ
Local CSV Log๐งฉ Technology Stack
AI & Agent
Python
OpenAI
LangChain
LangGraph
MCP
Model Context Protocol
MCP Python SDK
LangChain MCP Adapters
Financial Data
Yahoo Finance data source
Application
Streamlit
Python AsyncIO
Logging
CSV-based chat history
Runtime tracking
Token usage tracking
Estimated API cost tracking
๐ Project Structure
chat-with-financial-data/
โ
โโโ app/
โ โโโ __init__.py
โ โ
โ โโโ agent/
โ โ โโโ __init__.py
โ โ โโโ agent.py
โ โ โโโ graph.py
โ โ โโโ mcp_client.py
โ โ
โ โโโ mcp_servers/
โ โ โโโ __init__.py
โ โ โ
โ โ โโโ financial_data/
โ โ โโโ __init__.py
โ โ โโโ server.py
โ โ โโโ tools.py
โ โ
โ โโโ logging/
โ โโโ __init__.py
โ โโโ chat_logger.py
โ
โโโ logs/
โ โโโ .gitkeep
โ
โโโ tests/
โ โโโ test_agent.py
โ โโโ test_financial_tools.py
โ โโโ test_financial_mcp.py
โ โโโ test_langchain_mcp.py
โ
โโโ .env.example
โโโ .gitignore
โโโ LICENSE
โโโ README.md
โโโ requirements.txt
โโโ streamlit_app.pyโ๏ธ Installation
1. Clone the Repository
git clone https://github.com/fifah123/chat-with-financial-data.git
cd chat-with-financial-data2. Create a Virtual Environment
Windows
python -m venv .venvActivate the environment:
.venv\Scripts\Activate.ps1If PowerShell blocks script execution, you can activate using:
.venv\Scripts\activate3. Install Dependencies
pip install -r requirements.txt4. Configure Environment Variables
Create a .env file in the project root:
OPENAI_API_KEY=your_openai_api_keyYou can use .env.example as a template.
โ ๏ธ Never commit your
.envfile or expose your API key publicly.
โถ๏ธ Running the Application
Start the Streamlit application:
streamlit run streamlit_app.pyThe application will open in your browser.
You can then ask questions such as:
Give me information about ASII stock.What are the financial metrics of BBCA?Show me the historical prices of TLKM.What is the P/E ratio of ASII?๐ Running the MCP Server
The Financial Data MCP server can be started with:
python -m app.mcp_servers.financial_data.serverThe MCP server communicates through stdio, so it may not display a visible response when started directly.
The server is designed to be launched and consumed by the MCP client.
๐งช Testing
Test Financial Tools
python tests/test_financial_tools.pyTest MCP Server
python tests/test_financial_mcp.pyTest LangChain MCP Integration
python tests/test_langchain_mcp.pyTest Financial Agent
python tests/test_agent.py๐ Example Workflow
Suppose the user asks:
Give me information about ASII stock.The system processes the request as follows:
Step 1 โ User Input
Give me information about ASII stock.Step 2 โ AI Agent Understands the Question
The agent identifies that the user is asking for basic stock information.
Step 3 โ Agent Selects Required MCP Tools
The agent may call:
search_stock_tool
stock_infoIt does not need to call:
historical_prices
financial_metricsunless the question requires them.
Step 4 โ MCP Server Executes the Tools
The MCP server retrieves the requested financial data.
Step 5 โ AI Generates a Human-Friendly Answer
The raw tool output is converted into a natural-language response.
Example:
Astra International Tbk (ASII.JK) is an Indonesian company
listed on the Indonesia Stock Exchange.
Sector: Industrials
Industry: Conglomerates
Currency: IDR
Country: Indonesia
Exchange: Jakarta Stock Exchange๐ Example Financial Metrics
For example, the financial_metrics tool may return:
Ticker: ASII.JK
Market Cap: 203,323,869,233,152
P/E Ratio: 6.47
Forward P/E: 6.61
Price-to-Book: 0.87
Dividend Yield: 7.65%
Return on Equity: 11.98%
Profit Margin: 9.35%
Debt-to-Equity: 41.13The AI agent can then transform this raw data into an understandable financial summary.
๐ Chat Logging
The application records chat interactions locally.
Example log structure:
logs/
โโโ chat_history.csvTypical information captured includes:
timestamp
question
answer
runtime_seconds
tools_used
input_tokens
output_tokens
total_tokens
estimated_cost_usdThe log file is intentionally excluded from GitHub to prevent personal conversation data and potentially sensitive information from being committed.
โ ๏ธ Disclaimer
This project is intended for educational and informational purposes only.
The financial information provided by the application may be delayed, incomplete, or inaccurate. Nothing in this application should be considered financial, investment, or trading advice.
Always conduct your own research and consult a qualified financial professional before making investment decisions.
โญ Acknowledgements
This project uses open-source technologies including:
OpenAI
LangChain
LangGraph
Model Context Protocol (MCP)
Streamlit
Yahoo Finance
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityBmaintenanceA Model Context Protocol server built with FastMCP that provides financial data tools for AI agents, enabling them to access and analyze stock market information from Yahoo Finance through natural language queries.Last updated2
- AlicenseAqualityBmaintenanceAn MCP server that exposes comprehensive Yahoo Finance data (quotes, financials, options, news, and more) to AI agents via the yfinance library, requiring no API key.Last updated24MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol (MCP) server for agentic retrieval of financial data from Yahoo Finance, enabling stock information, historical data, analyst data, and more.Last updated713AGPL 3.0
- AlicenseAqualityAmaintenanceMCP server that exposes Yahoo Finance data through tools for searching instruments, fetching quotes, history, company info, financials, dividends, news, recommendations, and options. Enables AI assistants to answer market-data questions using natural language.Last updated21MIT
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fifah123/mcp-chat-with-financial-data'
If you have feedback or need assistance with the MCP directory API, please join our Discord server