list_vn_stocks
Retrieve Vietnam stock symbols from HOSE, HNX, and UPCOM exchanges. Filter by exchange or search by symbol/company name to access comprehensive Vietnamese market listings.
Instructions
List all available Vietnam stock symbols. Returns a comprehensive list of stock symbols traded on Vietnamese stock exchanges (HOSE, HNX, UPCOM). Similar to list_assets in coincap-mcp.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| exchange | No | Filter by exchange: HOSE (Ho Chi Minh Stock Exchange), HNX (Hanoi Stock Exchange), UPCOM (Unlisted Public Company Market), or 'all' for all exchanges. | |
| search | No | Optional search query to filter stocks by symbol or company name. |
Input Schema (JSON Schema)
{
"properties": {
"exchange": {
"description": "Filter by exchange: HOSE (Ho Chi Minh Stock Exchange), HNX (Hanoi Stock Exchange), UPCOM (Unlisted Public Company Market), or 'all' for all exchanges.",
"enum": [
"HOSE",
"HNX",
"UPCOM",
"all"
],
"type": "string"
},
"search": {
"description": "Optional search query to filter stocks by symbol or company name.",
"type": "string"
}
},
"type": "object"
}