Caution
This project is in public preview. We’ll do our best to maintain compatibility, but there may be breaking changes in upcoming releases.
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