get_top_etfs
Retrieve top ETFs by sector using the MCP-Yeoman server. Input a specific sector to analyze and fetch the leading ETFs in that category.
Instructions
Retrieve the top ETFs in a specific sector.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sector | Yes | The sector to get |
Input Schema (JSON Schema)
{
"properties": {
"sector": {
"description": "The sector to get",
"enum": [
"basic-materials",
"communication-services",
"consumer-cyclical",
"consumer-defensive",
"energy",
"financial-services",
"healthcare",
"industrials",
"real-estate",
"technology",
"utilities"
],
"title": "Sector",
"type": "string"
}
},
"required": [
"sector"
],
"title": "get_top_etfsArguments",
"type": "object"
}