Skip to content

tygoee/mcm_manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minecraft Modpack Manager

Version License Repo size

Minecraft modpack manager - This solves the problem of having to install mods manually. Currently, you need to edit the file manually, as this is still in it's alpha phase. You can currently download mods from curseforge, modrinth and planet minecraft and custom urls. You can also install forge automatically. Currently, mods, resourcepacks and shaderpacks are supported.

Building to a .pyz file

How to make a .pyz file:

  1. Clone the git repository (don't cd into it)
git clone https://github.com/tygoee/mcm_manager.git
  1. Using python zipapp, make a pyz file
python3 -m zipapp mcm_manager/ -m src.runner:main

To run it

python3 mcm-manager.pyz

To make it an app always accessible from the command line in Unix/Linux, add the shebang #!/usr/bin/python3 at the start of the .pyz file and copy it to ~/.local/bin/.

Creating a mcm file

The mod types are cf, mr, pm and url

You can get a mod slug/id from the download page url (which you copy from the url bar or by going to downloads → the file → right click → Go to download page):

To get the rest of the information, go to downloads → the file → right click → the download url:

Make sure 'name' is url encoded, for example %20 instead of a space

File structure

Currently you unfortunately need to make the file manually, but for that reason I'll probably make a GUI in the future.

This is what the file structure of an .mcm file should be:

{
  "minecraft": {
    "version": "(version)",
    "modloader": "(modloader)-(modloader version)"
  },
  "mods": [
    {
      "type": "(type)",
      "slug": "(slug)",
      "name": "(filename)"
    }
  ],
  "resourcepacks": [
    {
      "type": "(type)",
      "slug": "(slug)",
      "name": "(filename)"
    }
  ],
  "shaderpacks": [
    {
      "type": "(type)",
      "slug": "(slug)",
      "name": "(filename)"
    }
  ]
}

An example file:

{
  "minecraft": {
    "version": "1.20.1",
    "modloader": "fabric-0.14.22"
  },
  "mods": [
    {
      "type": "cf", // curseforge
      "slug": "worldedit",
      "name": "worldedit-mod-7.2.15.jar",
      "id": 4586218
    },
    {
      "type": "mr", // modrinth
      "slug": "sodium",
      "name": "sodium-fabric-mc1.20.1-0.5.1.jar",
      "id": "AANobbMIOkwCNtFH"
    },
    {
      "type": "url", // custom url
      "slug": "essential", // doesn't matter
      "name": "Essential-fabric_1-20-1.jar",
      "url": "https://cdn.essential.gg/mods/60ecf53d6b26c76a26d49e5b/649c45fb8b045520b2c1c8b2/Essential-fabric_1-20-1.jar",
      "info": {
        "title": "Essential",
        "icon": "https://static.essential.gg/icon/256x256.png",
        "description": "Essential is a quality of life mod that boosts Minecraft Java to the next level."
      } // info isn't yet implemented
    }
  ],
  "resourcepacks": [
    {
      "type": "pm", // planet minecraft
      "slug": "1-13-1-16-unique-spawn-eggs",
      "name": "unique-spawn-eggs-v1-5.zip",
      "media": "texture"
    }
  ],
  "shaderpacks": [
    {
      "type": "cf",
      "slug": "complementary-shaders",
      "name": "ComplementaryShaders_v4.7.2.zip",
      "id": 4570482
    }
  ]
}