productivity
Microsoft Teams MCP, CLI, and Lua Integration for AI Agents
Microsoft Teams integration docs for AI agents: MCP gateway setup, Microsoft Teams CLI commands, Lua API reference, credentials, and function schemas.Microsoft Teams for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
microsoft-teams.microsoft_teams_list_teams | Read read | 0 | List all Microsoft Teams teams the authenticated user has joined. Returns team IDs, names, and descriptions. |
microsoft-teams.microsoft_teams_get_team | Read read | 1 | Get details for a specific Microsoft Teams team by its ID. Returns the team name, description, and other properties. |
microsoft-teams.microsoft_teams_list_channels | Read read | 1 | List all channels in a Microsoft Teams team. Returns channel IDs, names, and descriptions. |
microsoft-teams.microsoft_teams_get_channel | Read read | 2 | Get details for a specific Microsoft Teams channel by its team and channel ID. |
microsoft-teams.microsoft_teams_list_messages | Read read | 3 | List recent messages in a Microsoft Teams channel. Returns message content, sender info, and timestamps. |
microsoft-teams.microsoft_teams_send_message | Write write | 4 | Send a message to a Microsoft Teams channel. Supports plain text and HTML content. |
microsoft-teams.microsoft_teams_list_chats | Read read | 1 | List chats for the authenticated Microsoft Teams user. Returns chat IDs, topics, and types (one-to-one, group, or meeting). |
microsoft-teams.microsoft_teams_get_current_user | Read read | 0 | Get the profile of the currently authenticated Microsoft Teams user. Returns display name, email, and job title. |