teams_list_chats
List all Microsoft Teams chat conversations.
Instructions
List Microsoft Teams chat conversations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:71-71 (registration)Registration entry for the 'teams_list_chats' tool in the TOOLS array, listing it as 'List Microsoft Teams chat conversations'.
["teams_list_chats", "List Microsoft Teams chat conversations"], - server.js:106-110 (handler)Generic handler for all tools (including teams_list_chats) in the registration loop. For the stub, it returns an inspection placeholder 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" }], })); }