McpAddOptions constructor

const McpAddOptions({
  1. required String name,
  2. required String commandOrUrl,
  3. List<String> args = const [],
  4. String scope = 'local',
  5. String? transport,
  6. List<String>? envVars,
  7. List<String>? headers,
  8. String? clientId,
  9. bool clientSecret = false,
  10. int? callbackPort,
  11. bool xaa = false,
})

Implementation

const McpAddOptions({
  required this.name,
  required this.commandOrUrl,
  this.args = const [],
  this.scope = 'local',
  this.transport,
  this.envVars,
  this.headers,
  this.clientId,
  this.clientSecret = false,
  this.callbackPort,
  this.xaa = false,
});