What is SCP
SCP gives one body to one LLM. The body runs at 60Hz, holds its own decision cache, and only calls the brain when the cache cannot answer. After a few sessions on the same task, the brain stops being called at all.How it differs from MCP
| MCP | SCP | |
|---|---|---|
| Who initiates | Brain asks, tool answers | Body acts, brain advises |
| Body | Passive (waits) | Active (60Hz tick loop) |
| Memory | None | Pattern store + adaptive memory |
| Cost over time | Constant | Drops as novelty decreases |
What SCP adds to MCP
- Body class with a tick loop.
SCPBodyruns at 60Hz, owns its sensors, owns its actuators. The brain is a slow advisor, not the driver. - Pattern store. Every brain decision is cached against a feature vector. Next time the same situation appears, the body answers locally in 0.1 ms.
- Adaptive memory. When the cache misses but a similar situation has been seen, a similarity-scored layer answers without a brain call.
Quick start
Examples
See /examples/cart-pole for a complete walkthrough that goes fromnpm install to a balanced inverted pendulum in under ten minutes.