List channels in a Team
teams_list_channelsRetrieve a list of channels for a specified Microsoft Teams team. Get details such as channel name, description, and membership type.
Instructions
List channels within a given team.
Args:
team_id (string): the team ID (from teams_list_joined_teams)
limit (number, 1-50): max channels (default 20)
response_format ('markdown' | 'json'): output format (default markdown)
Returns: JSON { count, channels: [{ id, displayName, description, membershipType, webUrl }] }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to return (1-50) | |
| team_id | Yes | The Microsoft Teams team (group) ID. Get it from teams_list_joined_teams. | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |