stocks_get_chart
Retrieve historical price data for a stock to analyze past performance and trends.
Instructions
Get historical price data for a stock
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:83-83 (registration)Tool registration entry in the TOOLS array with name 'stocks_get_chart' and description 'Get historical price data for a stock'. This is a stub/inspection server where all tools return a placeholder message.
["stocks_get_chart", "Get historical price data for a stock"], - server.js:107-109 (handler)The handler for all tools (including stocks_get_chart). It's a generic stub handler that returns a placeholder message instructing the user to install the real local-mcp binary. The real implementation is in a native binary not present in this codebase.
server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], }));