stocks_search_symbol
Search for a stock ticker symbol based on company name or keywords. Returns the matching ticker.
Instructions
Search for a stock ticker symbol
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-82 (registration)Registration of the stocks_search_symbol tool in the TOOLS array
["stocks_search_symbol", "Search for a stock ticker symbol"], - server.js:106-109 (handler)Generic stub handler for all tools - this is an inspection stub; the real implementation lives in a native binary (Local MCP).
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" }], }));