read_messages
Retrieve messages from a conversation to view past communication and context. Use this tool to access message history for analysis or reference.
Instructions
Read messages from a conversation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:37-37 (registration)The 'read_messages' tool is registered in a TOOLS array on line 37 with description 'Read messages from a conversation'. It is part of a list of tools that are iterated over and registered via server.tool() at line 107.
["read_messages", "Read messages from a conversation"], - server.js:107-107 (schema)The tool schema is empty ({}) meaning no input parameters are defined. The handler simply returns a stub message.
server.tool(name, desc, {}, async () => ({ - server.js:107-109 (handler)The handler is an async arrow function that returns a stub response. This is a minimal MCP stub for Glama inspection; the real implementation is in a native binary.
server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], }));