StockMCP
A Market MCP Server that lets AI agents fetch live prices, search market news, and run strategy workflows through Model Context Protocol tools.
Get Prices
Query live or historical quotes with MCP tool calls like get_price and get_ohlc.
Search News
Pull recent headlines and sentiment for tickers to enrich your analysis.
Run Strategies
Trigger backtests or signal scans as reproducible MCP tool invocations.
Low Setup
Add StockMCP to any MCP-enabled client and start calling tools immediately.
Composable Tools
Combine price, news, and backtest tools into repeatable workflows.
Agent Friendly
Stable schemas and predictable responses for reliable AI automation.
What is MCP?
Model Context Protocol standardizes tools and resources for AI clients. StockMCP exposes market primitives as MCP tools so your agent can request market data or run workflows safely and consistently.
MCP Tool Examples
# get price
tool: stockmcp.get_price
input: { "symbol": "AAPL", "at": "latest" }
-> { "symbol": "AAPL", "price": 231.42, "currency": "USD", "ts": "2025-08-03T10:00:00Z" }
# search news
tool: stockmcp.search_news
input: { "q": "NVDA earnings", "limit": 3 }
-> [{ "title": "...", "url": "...", "published_at": "..." }, ...]