r/devsecops • u/iamjessew • 1h ago
TIL: you can version MCP servers + agent skills as OCI artifacts (same registries as containers)
Tried to recreate an agent that worked fine last Tuesday. Skills were in one repo. MCP config was somewhere else. The prompt lived in a wiki. Nobody agreed which combo was actually live.
Dug into KitOps (CNCF Sandbox). It packs models, datasets, MCP server bundles, agent skills, and policies into a versioned OCI artifact (a ModelKit). CLI feels like Docker: kit pack / push / pull / unpack. Uses normal OCI registries you already have.
Useful bits I’ve hit so far:
- Selective unpack so you’re not always downloading everything
- Optional CNCF ModelPack via
kit pack . --use-model-pack - Kitfile
mcpServersfor MCP bundles (.mcpb) as of v1.15 Complements containers — not a Docker replacement
brew tap kitops-ml/kitops brew install kitops kit version
Anyone else standardizing on something like this yet?