All tools

stocks_get_quote

Stocks · macOS · Windows

Effect: read (strongest supported action). Status: gated.

Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.

macOS

Purpose

Gets current stock price and market data for one or more symbols (e.g. AAPL, MSFT, BTC-USD). Uses Yahoo Finance — no API key required.

Required inputs

Permissions and confirmation

No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.

Full input schema — macOS
{
  "properties": {
    "symbols": {
      "description": "Ticker symbols, comma-separated ('AAPL,MSFT,GOOGL') or a JSON array (['AAPL','MSFT'])",
      "type": "string"
    }
  },
  "required": [
    "symbols"
  ],
  "type": "object"
}

Documentation example

Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.

{
  "symbols": "AAPL,MSFT"
}

Windows

Purpose

Gets real-time stock quote for a symbol (e.g., AAPL, MSFT, BTC-USD).

Required inputs

No required inputs are declared in this platform's schema. Optional selectors and runtime requirements may still apply.

Permissions and confirmation

No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.

Full input schema — Windows
{
  "properties": {
    "symbol": {
      "description": "Stock/crypto symbol (e.g., AAPL, MSFT, GOOGL, BTC-USD)",
      "type": "string"
    },
    "symbols": {
      "description": "Alias for `symbol` — the name the cloud catalog (Mac) advertises. Comma-separated or a JSON array; only the FIRST symbol is quoted (this server has no multi-symbol batch fetch).",
      "type": "string"
    }
  },
  "type": "object"
}

Documentation example

Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.

{
  "symbols": "AAPL,MSFT"
}