teams_read_channel_messages
Reads messages from a specified Microsoft Teams channel to retrieve conversation content for review or analysis.
Instructions
Read messages from a Teams channel
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:75-75 (registration)The tool 'teams_read_channel_messages' is registered as a tool name in the TOOLS array with description 'Read messages from a Teams channel'.
["teams_read_channel_messages", "Read messages from a Teams channel"], - server.js:106-108 (registration)The tool is registered using server.tool() with an empty schema and a stub handler that returns an inspection notice. This is a placeholder; 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" }],