inquery-overseas-stock-price
Retrieve overseas stock prices using KIS REST API MCP Server, enabling users to query real-time data by specifying a stock symbol and market.
Instructions
Get overseas stock price from Korea Investment & Securities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
market | Yes | ||
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"market": {
"title": "Market",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol",
"market"
],
"title": "inquery_overseas_stock_priceArguments",
"type": "object"
}