Skip to main content
Glama
sapph1re

FinData MCP

stock_quote

Get real-time stock quotes with 15-minute delay for NYSE, NASDAQ, and global tickers. Retrieve current price, volume, and percentage change data for investment analysis.

Instructions

Real-time (15-min delayed) stock price, volume, and change % for any NYSE/NASDAQ/global ticker.

Args: ticker: Stock ticker symbol (e.g. AAPL, TSLA, MSFT, NVDA) symbol: Alias for ticker — use either ticker or symbol

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerNo
symbolNo

Implementation Reference

  • The definition and implementation of the 'stock_quote' tool, which handles the request by resolving the symbol/ticker and calling the FinDataClient.
    @mcp.tool()
    def stock_quote(ticker: str = "", symbol: str = "") -> dict[str, Any]:
        """Real-time (15-min delayed) stock price, volume, and change % for any NYSE/NASDAQ/global ticker.
    
        Args:
            ticker: Stock ticker symbol (e.g. AAPL, TSLA, MSFT, NVDA)
            symbol: Alias for ticker — use either ticker or symbol
        """
        resolved = ticker or symbol
        if not resolved:
            return {"error": "Missing required parameter: provide 'ticker' or 'symbol' (e.g. ticker='AAPL')"}
        return _get_client().call("stock_quote", ticker=resolved)

Latest Blog Posts

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/sapph1re/findata-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server