dropbox property

Connector dropbox
final

Implementation

static final dropbox = Connector(
  name: "Dropbox",
  server: MCPServer(serverLabel: "Dropbox", openaiConnectorId: "connector_dropbox"),
  oauth: OAuthClientConfig(
    clientId: const String.fromEnvironment("DROPBOX_CONNECTOR_OAUTH_CLIENT_ID"),
    clientSecret: "CLIENT_SECRET",
    authorizationEndpoint: "https://www.dropbox.com/oauth2/authorize",
    tokenEndpoint: "https://api.dropbox.com/oauth2/token",
    noPkce: true,
    scopes: ["files.metadata.read", "account_info.read", "files.content.read"],
  ),
);