create static method

Future<StdioClientTransport> create({
  1. required String command,
  2. List<String> arguments = const [],
  3. String? workingDirectory,
  4. Map<String, String>? environment,
})

Always throws on this platform — there is no process to spawn.

Implementation

static Future<StdioClientTransport> create({
  required String command,
  List<String> arguments = const [],
  String? workingDirectory,
  Map<String, String>? environment,
}) async {
  throw McpError('STDIO transport: $_unsupported');
}