get_quote
Retrieve real-time stock quotes for a specified symbol using Paper MCP Server, enabling efficient access to market data for informed trading decisions.
Instructions
Get real-time quote for a symbol
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock symbol |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}