mcp-finance-agent
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., "@mcp-finance-agentWhat's Tesla's P/E ratio?"
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.
Finance Agent
A LangGraph agent that routes natural-language stock questions between a custom MCP server (yfinance quant tools) and a news tool, validated by a hand-rolled eval set.
Built to close two skill gaps: designing MCP servers (tool surface, descriptions-as-routing-logic) and agent orchestration with routing judgment.
Architecture
User Query
│
▼
┌─────────┐
│ route │ 3-way classifier: quant / news / both
└────┬────┘
│
├──────────────────────┬─────────────────────
▼ ▼
┌─────────┐ ┌──────────┐
│ quant │ │ news │
│ (ReAct) │ │ (ReAct) │
└────┬────┘ └────┬─────┘
│ │
└──────────┬───────────┘
│
┌───────┴────────┐
│ │
▼ ▼
┌──────────────┐ ┌───────────┐
│finish_single │ │ synthesize│
│ _source │ │ │
└──────┬───────┘ └─────┬─────┘
│ │
└────────┬─────────┘
▼
AnswerNodes:
route— classifies the query; no tool calls, just a decisionquant— ReAct agent with 5 MCP tools; picks the right tool(s) for the questionnews— ReAct agent withget_recent_news; handles news/context questionsfinish_single_source— pass-through for single-path queries; promotes result toanswersynthesize— reconciles quant + news outputs into one coherent answer for "both" queries
For "both" queries, quant and news run concurrently; LangGraph holds until both complete before running synthesize.
Related MCP server: Yahoo Finance MCP Server
MCP Server — Quant Tools
Five tools, each scoped to a single question shape:
Tool | Use case |
| Point-in-time price lookup |
| P/E, EPS, market cap, revenue growth, margins |
| Side-by-side fundamentals comparison across companies |
| Return, volatility, vs-average over a lookback period |
| Next/most recent earnings date |
Tool descriptions include explicit negative cases ("not for X, which belongs to tool Y") — required because several tools share similar parameter shapes and would otherwise be ambiguous to the router.
Setup
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env # add your ANTHROPIC_API_KEYUsage
python -m agent.graph "What's Tesla's P/E ratio?"
python -m agent.graph "Why did NVDA drop this week?"
python -m agent.graph "Has AMZN's stock kept pace with its revenue growth?"Evals
pytest evals/test_agent.py -v18 queries across four categories: quant, news, both, and adversarial. Adversarial cases include keyword traps (news language wrapping quant questions) and false-premise queries (assertions about price movement that must be verified before explaining).
Result: 15/18 → 18/18 after correcting two brittle ticker-string assertions and adding a false-premise classification rule to the router prompt.
Key Design Decisions
1. Tool descriptions as routing logic. Every tool description explicitly states what it does not handle. Without negative cases, tools with overlapping parameter shapes (e.g. get_stock_price and get_price_history_stats both take ticker + date-ish params) are ambiguous to the LLM router.
2. News as a plain LangGraph tool, not a second MCP server. The instinct was "second MCP server = reusable building block." Pushed on it: reusable for what? No concrete second consumer existed. A second MCP server means a second subprocess to launch and manage; a plain @tool is a single in-process function. The process-boundary overhead had no matching benefit.
3. Router classifies intent, agents pick tools. The router does 3-way classification only — it does not pick which quant tool to call. LLM tool-selection (matching a query to one of 5 tool descriptions) is flexible/non-deterministic work that belongs inside the quant ReAct loop, not duplicated into the router prompt.
4. Synthesis must reconcile, not concatenate. The synthesis prompt explicitly instructs the model to connect quant data and news context into a single coherent answer. "Do not just list both separately — connect them." Without this, the "both" path produces two paragraphs stapled together rather than an actual answer.
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
- AlicenseNot gradedqualityDmaintenanceProvides real-time stock quotes, historical price data, financial news, and multi-stock comparisons using Yahoo Finance data. Enables users to access comprehensive financial market information through natural language queries.301MIT
- FlicenseNot gradedqualityDmaintenanceEnables querying Yahoo Finance data including stock prices, historical data, financial statements, dividends, news, analyst recommendations, and company information through the yfinance library.
- AlicenseNot gradedqualityNot gradedmaintenanceProvides real-time financial data from Yahoo Finance, enabling stock price lookups, historical data analysis, company information retrieval, and multi-stock comparisons through natural language queries.
- AlicenseNot gradedqualityDmaintenanceProvides comprehensive financial data from Yahoo Finance, enabling retrieval of stock prices, company information, financial statements, options data, analyst recommendations, and market news through natural language queries.MIT
Related MCP Connectors
Global stock research, ML forecasts, valuation signals, screeners & portfolio tracking in Claude
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
13-model stock valuation engine for AI agents - fair values for 5,900+ US stocks, updated daily.
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/zacharymcclernon/mcp-finance-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server