Connections & Capabilities
Connects To
Capabilities
Quickstart
Install
npm install -g @anthropic-ai/claude-codeConfig
{
"mcpServers": {
"massive": {
"command": "<path_to_your_uvx_install>/uvx",
"args": [
"--from",
"git+https://github.com/massive-com/mcp_massive@v0.6.0",
"mcp_massive"
],
"env": {
"MASSIVE_API_KEY": "<your_api_key_here>",
"HOME": "<your_home_directory>"
}
}
}
}Exposed MCP Tools (7)
get_aggsRetrieves stock aggregates (OHLC) data for a specific ticker.
Read-only operation, retrieves historical data.
list_tradesLists historical trade data for a given ticker.
Read-only operation, retrieves historical data.
get_last_tradeGets the latest trade for a specified symbol.
Read-only operation, retrieves real-time data.
list_ticker_newsRetrieves recent news articles related to specific tickers.
Read-only operation, retrieves news data.
get_snapshot_tickerProvides the current market snapshot for a ticker.
Read-only operation, retrieves real-time data.
get_market_statusRetrieves the current market status and trading hours.
Read-only operation, retrieves market status information.
list_stock_financialsLists fundamental financial data for a specific stock.
Read-only operation, retrieves financial data.
Safety Assessment
This MCP server is relatively safe for read-only access to financial data. The primary risk is the exposure of the Massive.com API key. Ensure the API key is securely stored and managed to prevent unauthorized access. Avoid using the API in untrusted environments.
- Read-only access to financial data via API
- No direct write or delete operations on the server itself
- API key authentication
- Data requests are proxied directly to Massive.com's API
- Requires a Massive.com API key, which needs to be securely managed
- Potential for information disclosure if the API key is compromised
- Reliance on the security of the Massive.com API and infrastructure
- Exposure to external data sources introduces a risk of data integrity issues
