get_config
Retrieve the current LMCP configuration to verify your setup and settings.
Instructions
Get current LMCP configuration
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:103-103 (registration)The 'get_config' tool is registered as part of the TOOLS array with description 'Get current LMCP configuration'.
["get_config", "Get current LMCP configuration"], - server.js:106-109 (handler)The handler for all tools (including get_config) is a stub that returns an inspection message. The real implementation is in a native binary.
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" }], }));