McpLocalServerConfig constructor

const McpLocalServerConfig({
  1. required String command,
  2. List<String> args = const [],
  3. Map<String, String>? env,
  4. String? cwd,
  5. List<String>? tools,
  6. int? timeout,
})

Implementation

const McpLocalServerConfig({
  required this.command,
  this.args = const [],
  this.env,
  this.cwd,
  super.tools,
  super.timeout,
});