# Vercel Connect now supports Microsoft

DevFeed: [Vercel Connect now supports Microsoft](<https://devfeed.tech/articles/vercel-connect-now-supports-microsoft-1142.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/vercel-connect-supports-microsoft>)

Author: Ben Sabic

Published: 2026-08-19T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [Vercel](<https://devfeed.tech/topics/vercel.md>), [Microsoft](<https://devfeed.tech/topics/microsoft.md>), [API](<https://devfeed.tech/topics/api.md>), [OpenID connect (OIDC)](<https://devfeed.tech/topics/oidc.md>), [SDKs](<https://devfeed.tech/topics/sdks.md>), [Authorization](<https://devfeed.tech/topics/authorization.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Deployment](<https://devfeed.tech/topics/deployment.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [cli](<https://devfeed.tech/tags/cli.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [identity](<https://devfeed.tech/tags/identity.md>), [microsoft](<https://devfeed.tech/tags/microsoft.md>), [oidc](<https://devfeed.tech/tags/oidc.md>), [sdk](<https://devfeed.tech/tags/sdk.md>), [secrets](<https://devfeed.tech/tags/secrets.md>), [vercel](<https://devfeed.tech/tags/vercel.md>)

## AI overview

Vercel Connect now provides a managed Microsoft connector that lets applications access Microsoft products such as Teams and OneDrive. Vercel handles Entra application registration and federated credentials, while the @vercel/connect SDK uses deployment OIDC identity to obtain scoped, short-lived tokens with application or delegated user permissions.

## Source excerpt

Vercel Connect now includes a managed connector for Microsoft, so your apps and agents can access all Microsoft products such as Teams, OneDrive and more. As a Vercel Managed Connector, Vercel registers the Entra application and configures federated credentials for it, so you don't have to create an app registration or manage client secrets yourself. Authorize the app for your Microsoft tenant once, then attach the connector to the projects and environments it needs. Create a connector from the dashboard or the Vercel CLI: With the connector attached, your code requests a token only when it needs one. The @vercel/connect SDK authenticates with your deployment's OIDC identity and returns a short-lived token for the app itself, using the application permissions your admin granted: Each token is scoped to what you request and refreshed automatically, so there's nothing to leak or rotate. To act as a specific person instead, pass that user as the subject and the token carries their delegated permissions: Read the Vercel Connect docs and create a Microsoft connector to get started. Read more