get_company_overview
Retrieve detailed company information and key metrics using a stock symbol (e.g., AAPL) for comprehensive financial analysis on Alpha Vantage MCP Server.
Instructions
Get company information and key metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | The stock symbol (e.g., AAPL) |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "The stock symbol (e.g., AAPL)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}