teams_list_channels
List all channels in a Microsoft Teams team, returning channel names and IDs.
Instructions
List channels in a Teams team
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:74-74 (registration)Registration of 'teams_list_channels' tool in the TOOLS array. The tool is listed with description 'List channels in a Teams team'.
["teams_list_channels", "List channels in a Teams team"], - server.js:106-109 (handler)Handler loop that registers all tools (including teams_list_channels) with a stub response. The real handler is in the 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" }], }));