CurseForge · Minecraft mod
SPC Core
The official API library for Stored Program Controls, providing the shared foundation for addons, integrations, and compatibility with other mods.
Quick answer
Which SPC Core release should I use?
SPC Core v6 for SPC 1.1.0.x (1.21.1) targets 1.21.1 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.
Where it goes
Is SPC Core required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does SPC Core v6 for SPC 1.1.0.x (1.21.1) need?
SPC Core v6 for SPC 1.1.0.x (1.21.1). Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional mods.
Before you install it
Add SPC Core without breaking your instance.
Built for SPC Core v6 for SPC 1.1.0.x (1.21.1). Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use SPC Core v6 for SPC 1.1.0.x (1.21.1). It targets 1.21.1 with NeoForge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
This file does not list any required mods. Do not add a library just because a different file uses it.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside SPC Core v6 for SPC 1.1.0.x (1.21.1). It opens that exact file at the source.
About this project
What does SPC Core add?
SPC Core — Addon API for Stored Program Controls
SPC Core is the official addon API for Stored Program Controls. It lets mod developers create custom function block nodes that integrate seamlessly into SPC's LOGO!-inspired programming environment.
Addon mods and the main SPC mod both depend on SPC Core — install it alongside Stored Program Controls for addon support.
For Addon Developers
SPC Core provides a clean, stable API surface for extending the SPC automation system:
- Custom Function Blocks — Define your own logic nodes with configurable inputs, outputs, and parameters
- Six Signal Types — DIGITAL, INTEGER, DECIMAL, TEXT, ITEM, and ITEM_ID with automatic type conversion
- Four-Phase Execution — Input Read → Logic Evaluation → State Update → Output Apply
- Persistent Node State — Slot-based storage that survives across ticks and world saves
- Palette Integration — Register nodes into custom or existing categories in the Programming Block editor
- Display Name & Label Customization — Control how your nodes appear in the palette with custom display names, short labels, and descriptions
- Context Extensions — Hook into world interaction, sensors, displays, and item I/O
- Multiblock & Network APIs — Create nodes that interact with SPC hardware modules and networked devices
Quick Start
// 1. Declare your node schema
SpcNodeSchema schema = new SpcNodeSchema(
ResourceLocation.fromNamespaceAndPath("myaddon", "my_node"),
SpcExecutionPhase.LOGIC,
List.of(inputPort, outputPort),
List.of(),
ISpcNodeFactory.of(MyCompiledNode::new)
);
// 2. Register during mod construction
SpcNodeRegistry.register(schema, myCategory);
Setup
Add the SPC Core jar as a compile-only dependency in your build.gradle:
dependencies {
compileOnly files("libs/storedprogramcontrols-1.1.0-api.jar")
}
Declare the dependency in your neoforge.mods.toml:
[[dependencies.your_mod_id]]
modId = "spc_core"
type = "required"
versionRange = "[1.1.0,)"
ordering = "AFTER"
side = "BOTH"
Full documentation and tutorials are available on the SPC Addon API Wiki.
Key Details
| API Version | 1.1.4 |
| Minecraft | 1.21.1 |
| Mod Loader | NeoForge |
| API Jar Size | ~47 KB |
For Players
If you use an addon that depends on SPC Core, install both SPC Core and Stored Program Controls. SPC Core contains the shared interfaces that let addons communicate with the main mod.
Project description from CurseForge.
Pick your setup
SPC Core by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
SPC Core versions and loaders
SPC Core v6 for SPC 1.1.0.x (1.21.1)
storedprogramcontrols-v6-api.jar
25 Apr 2026
SPC Core 1.2.0 for SPC 1.0.0 (1.21.1)
storedprogramcontrols-1.2.0-api.jar
21 Apr 2026
SPC Core 1.1.6 for SPC 0.3.x (1.21.1)
storedprogramcontrols-1.1.6-api.jar
19 Apr 2026
SPC Core 1.1.5 for SPC 0.2.0.1 (1.21.1)
storedprogramcontrols-1.1.5-api.jar
17 Apr 2026
SPC Core 1.1.4 for SPC 0.2.0 (1.21.1)
storedprogramcontrols-1.1.4-api.jar
12 Apr 2026
SPC Core 1.1.0 for SPC 0.2.0 (1.21.1)
storedprogramcontrols-1.1.0-api.jar
11 Apr 2026
Looking for an older file? The official CurseForge project page is in Resources.