sharepoint property
Implementation
static final sharepoint = Connector(
name: "Sharepoint",
server: MCPServer(serverLabel: "Sharepoint", openaiConnectorId: "connector_sharepoint"),
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: ["Sites.Read.All", "Files.Read.All", "User.Read"],
),
);