Stocks & Equities Tools
8 tools for US stock market data, company analysis, and financial metrics.
MCP Endpoint: POST /hive_stocks_equities/mcp
Data Source: Finnhub
Stock Quotes
finnhub_get_stock_quote
Get real-time stock price quote.
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Stock ticker symbol (e.g., "AAPL", "TSLA") |
Example:
curl -X POST https://api.hiveintelligence.xyz/api/execute \
-H "Content-Type: application/json" \
-d '{"toolName": "finnhub_get_stock_quote", "arguments": {"symbol": "AAPL"}}'
finnhub_get_stock_candles
Get historical OHLCV candlestick data.
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Stock ticker symbol |
| resolution | string | Yes | Timeframe: 1, 5, 15, 30, 60, D, W, M |
| from | number | Yes | Start UNIX timestamp |
| to | number | Yes | End UNIX timestamp |
Company Data
finnhub_get_company_profile
Get company profile and basic information.
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Stock ticker symbol |
finnhub_get_basic_financials
Get key financial metrics (P/E, EPS, market cap, 52-week high/low).
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Stock ticker symbol |
Analyst Ratings
finnhub_get_stock_recommendations
Get analyst recommendation trends (buy, hold, sell).
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Stock ticker symbol |
finnhub_get_price_target
Get analyst consensus price target.
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Stock ticker symbol |
Discovery
finnhub_search_symbol
Search for stock symbols by name or ticker.
| Parameter | Type | Required | Description |
|---|---|---|---|
| q | string | Yes | Search query (e.g., "apple", "AAPL") |
finnhub_get_market_news
Get general market news or financial headlines.
| Parameter | Type | Required | Description |
|---|---|---|---|
| category | string | No | News category (default: "general") |
