stocks_get_quote
Fetch current stock prices and market data to evaluate investment opportunities.
Instructions
Get current stock price and market data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:81-81 (registration)Tool 'stocks_get_quote' is registered in the TOOLS array as ['stocks_get_quote', 'Get current stock price and market data'].
["stocks_get_quote", "Get current stock price and market data"], - server.js:106-110 (registration)The tool registration loop: for each entry in TOOLS, server.tool() is called with the name and description, and an empty schema object. The handler is a stub that returns an inspection message.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], })); }