initialize method
Initialize the platform implementation with config
Implementation
@override
Future<void> initialize(MCPConfig config) async {
try {
await methodChannel.invokeMethod<void>('initialize', config.toJson());
} on PlatformException catch (e) {
throw MCPPlatformException('Failed to initialize', e.code, e.details);
}
}