outlookEmail property
Implementation
static final outlookEmail = Connector(
name: "Outlook Email",
server: MCPServer(serverLabel: "Outlook_Email", openaiConnectorId: "connector_outlookemail"),
oauth: OAuthClientConfig(
clientId: const String.fromEnvironment("MICROSOFT_CONNECTOR_OAUTH_CLIENT_ID"),
clientSecret: "CLIENT_SECRET",
authorizationEndpoint: "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
tokenEndpoint: "https://login.microsoftonline.com/common/oauth2/v2.0/token",
noPkce: false,
scopes: ["User.Read", "Mail.Read"],
),
);