get_current_stock_price
Retrieve the current stock price for a company by providing its ticker symbol using the Financial Datasets MCP Server.
Instructions
Get the current / latest price of a company.
Args:
ticker: Ticker symbol of the company (e.g. AAPL, GOOGL)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_current_stock_priceArguments",
"type": "object"
}