Ollama — локальные модели для агента

★ 7.5 · ai-tooling

add-ollama-tool is a Claude Code skill that adds a stdio-based Ollama MCP server so the container agent can call local models and optionally manage the model library. Two core tools are always available — `ollama_list_models` and `ollama_generate` — while `ollama_pull_model`, `ollama_delete_model`, `ollama_show_model`, and `ollama_list_running` are opt-in via the `OLLAMA_ADMIN_TOOLS=true` flag. The skill copies the MCP server source and its tests into the agent-runner tree, registers the server in `index.ts`, and forwards `OLLAMA_HOST` and `OLLAMA_ADMIN_TOOLS` from the host environment through `container-runner.ts`. Since Ollama runs locally and is keyless, no credentials are required — only a reachable daemon. It suits developers who want to offload work to local language models inside an agentic workflow without cloud dependencies.