Ollama model management
Skill dor-rondel/agent-skills-mcp/resources/docker/ollama-model-management
mcp server serving coding agent skills with helper tools
npx -y skills add dor-rondel/agent-skills-mcp --skill ollama-model-managementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use this skill when the user asks to pull new models, list active models, or check the status of the Ollama engine inside the container.
SKILL.md
1.0 KB, as published. Nobody here has run it
Ollama Model Management
This skill handles interaction with the Ollama service to update, add, or audit local LLM and embedding models.
🛠️ Service Target
- Host Address: http://127.0.0.1:11435
- Default Preloaded Models:
llama3,nomic-embed-text
🏃♂️ Core Commands
1. List Installed Models
Query the active Ollama engine inside the container to see what weights are already loaded on disk:
docker exec -it ollama ollama list
2. Download / Pull a New Model
Instruct the containerized daemon to pull down a new model directly from the Ollama registry:
docker exec -it ollama ollama pull <model-name>
3. Check Service Logs
If a model fails to load or download, inspect the execution logs directly from the active service:
docker-compose logs ollama