Warning
Deprecated — This package was originally in preview, but we have decided to stop maintaining it before General Availability. We recommend testing with Microsoft Teams directly, or with the Agents Playground.
Developer tools for locally testing and debugging Teams applications. Streamlines the development process by eliminating the need to deploy apps or expose public endpoints during development.
pip install microsoft-teams-devtoolsOr if using uv:
uv add microsoft-teams-devtoolsfrom microsoft_teams.apps import App
from microsoft_teams.devtools import DevToolsPlugin
app = App()
app.use(DevToolsPlugin())
await app.start()
# Open http://localhost:3979/devtools in your browser