Unauthorized Error When Importing Model via mesheryctl model import

I’m running into an issue while trying to import a model using mesheryctl. Here’s the command and the resulting error:
./mesheryctl model import azure-alerts-management.tar

Error Output:
Error: Access to this resource is unauthorised.

Complete logs:

yashsharma@Yashs-MacBook-Pro-5 mesheryctl % ./mesheryctl exp model build --path ../server/meshmodel azure-alerts-management
Building meshery model from path ../server/meshmodel/azure-alerts-management
 Saving OCI artifact as azure-alerts-management.tar
yashsharma@Yashs-MacBook-Pro-5 mesheryctl % git status
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
 (use "git add <file>..." to include in what will be committed)
       azure-alerts-management.tar
nothing added to commit but untracked files present (use "git add" to track)
 yashsharma@Yashs-MacBook-Pro-5 mesheryctl % ./mesheryctl model import azure-alerts-management.tar
Error: Access to this resource is unauthorized.
yashsharma@Yashs-MacBook-Pro-5 mesheryctl %

To resolve this issue, ensure that you’re authenticated with your Meshery instance before performing the model import operation.

Use the following command to log in:

./mesheryctl system login

This command will authenticate your mesheryctl with the Meshery server and store the required access token. Once logged in, try importing the model again.