McpRemoteServerConfig constructor

const McpRemoteServerConfig({
  1. required String type,
  2. required String url,
  3. Map<String, String>? headers,
  4. List<String>? tools,
  5. int? timeout,
})

Implementation

const McpRemoteServerConfig({
  required this.type,
  required this.url,
  this.headers,
  super.tools,
  super.timeout,
});