teams_list_teams
List all Microsoft Teams teams and their channels to view team structure and channel names.
Instructions
List Teams and their channels
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:73-73 (registration)Tool registration entry in the TOOLS array defining the 'teams_list_teams' tool with description 'List Teams and their channels'.
["teams_list_teams", "List Teams and their channels"], - server.js:106-109 (handler)Generic handler loop that registers each tool (including teams_list_teams) with an empty schema and a stub response. The real implementation is in a native binary not present in this codebase.
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)Empty schema object passed as third argument to server.tool(), meaning no input validation is defined in this stub.
server.tool(name, desc, {}, async () => ({