What problem does it solve?
It lets the containerized agent use locally installed Ollama models, avoiding the need to route every task through remote APIs and reducing latency and cost for tasks like summarization and translation.
Core Features & Use Cases
- Adds an Ollama MCP server: Exposes Ollama models to the container agent via stdio MCP so the agent can call them as tools.
- Enables model discovery and generation: Provides
ollama_list_models to enumerate installed models and ollama_generate to run prompts through a chosen model.
- Supports practical workflows: Use it when you want the agent to answer questions using local models, such as turning long text into summaries, translating content, or performing general reasoning without external calls.
Quick Start
In your Claude Code prompt, run the install/configuring workflow by telling the user to add the Ollama MCP tool integration and then ask the agent to answer using the local tools.