get_top_companies
Retrieve the top performing companies in a specified sector using the MCP server. Input a sector and the number of top companies to fetch for targeted insights.
Instructions
Retrieve the top companies in a specific sector.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sector | Yes | The sector to get | |
top_n | Yes | Number of top companies to retrieve |
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"
},
"top_n": {
"description": "Number of top companies to retrieve",
"title": "Top N",
"type": "integer"
}
},
"required": [
"sector",
"top_n"
],
"title": "get_top_companiesArguments",
"type": "object"
}