get_contact
Retrieve full contact details for a person by their name.
Instructions
Get full contact details by name
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:31-31 (registration)Tool 'get_contact' is registered in the TOOLS array on line 31 with description 'Get full contact details by name'. The actual handler is a generic stub that returns a placeholder message, since this is an inspection stub file. The real implementation lives in a native binary not present in this codebase.
["get_contact", "Get full contact details by name"], - server.js:106-110 (handler)Generic handler for all tools. All tools including 'get_contact' use the same stub handler created in the for-loop (lines 106-110). The handler accepts an empty schema `{}` and returns a static placeholder text instructing the user to install 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" }], })); }