teams_read_chat_messages
Retrieve messages from a Microsoft Teams chat to access team communications.
Instructions
Read messages from a Teams chat
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:72-72 (registration)The tool 'teams_read_chat_messages' is registered in the TOOLS array at line 72 with description 'Read messages from a Teams chat'.
["teams_read_chat_messages", "Read messages from a Teams chat"], - server.js:106-110 (handler)All tools (including teams_read_chat_messages) share the same stub handler which returns an inspection message. This is a minimal MCP stub meant for Glama inspection; the real server is 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" }], })); } - server.js:107-107 (schema)The tool uses an empty schema object '{}' meaning no input parameters are defined in this stub.
server.tool(name, desc, {}, async () => ({