1.7.1
Compatibility
Changes
v1.7.1 — Minecraft 26.1.2 Maintenance Release
This is the MCAI 1.7.1 maintenance release for the Minecraft 26.2 / 26.1.2 stable line, maintained in parallel with the main branch (Minecraft 26.3).
Version Details
- Version: 1.7.1 (stable release; alpha suffix removed)
- Minecraft: 26.1.2
- Fabric Loader: 0.19.2
- Fabric API: 0.149.1+26.1.2
Branch Structure and Notes
main— Active development branch, Minecraft 26.3mc-26.2— Maintenance branch, Minecraft 26.2 / 26.1.2 (the branch for this release)
The feature set on this branch stays in sync with main, covering all features such as behavior review, command execution approval, online Wiki search, and the persona system.
Files
mcai-26.1.2-1.7.1.jar— Main JARmcai-26.1.2-1.7.1-sources.jar— Sources JAR
Installation
Place the JAR in the mods/ directory. Requires Fabric Loader ≥0.19.2 and the Fabric API.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:rVd5CJep:Fjc4UDll"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:rVd5CJep:Fjc4UDll"
}

