report_problem
Report issues and errors to the LMCP team for prompt support and resolution.
Instructions
Report a problem to the LMCP team
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:102-102 (registration)Tool 'report_problem' is registered in the TOOLS array at index position matching line 102, with description 'Report a problem to the LMCP team'.
["report_problem", "Report a problem to the LMCP team"], - server.js:106-110 (handler)Handler logic for all tools including 'report_problem': each tool is registered via server.tool() with an empty schema and a stub async handler 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" }], })); }