So I want to create a plugin that interacts with MorePlayerModels and I was wondering if their is a way to interact with the mod via the plugin by sending a command like /mpm url
Sponge plugins naturally interact with mods when it comes to modded items and blocks.
As for commands, you can dispatch any command (vanilla or modded) by simply dispatching the command. Here is the docs on commands, tells you everything you need to know.
https://docs.spongepowered.org/stable/en/plugin/commands/commandmanager.html
Hello!
Yes, you can interact with MorePlayerModels from a plugin by dispatching its commands programmatically. In Sponge or similar frameworks, you can use the server’s command manager to run something like /mpm url on behalf of a player or the console. This works because the mod exposes its functionality through commands, so your plugin doesn’t need a direct API—just ensure permissions are set correctly and call the command manager to process the string.