add-ollama-tool

Expose local Ollama models to container agents via an MCP server.

Updated Mar 15, 2026
One-click install
npx skills add https://github.com/Arno37/nanoclaw_test --skill add-ollama-tool-arno37
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-ollama-tool
Source: https://github.com/Arno37/nanoclaw_test/tree/main/.claude/skills/add-ollama-tool
Command: npx skills add https://github.com/Arno37/nanoclaw_test --skill add-ollama-tool-arno37

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill adds a stdio-based MCP server that exposes local Ollama models as tools for the container agent. Claude remains the orchestrator but can offload work to local models.

Core Features & Use Cases

  • stdio-based MCP server exposing local Ollama models as tools for the container agent.
  • Tools added: ollama_list_models and ollama_generate
  • Use Case: When the agent needs to perform tasks like summarization or coding offline, it can call these tools locally.

Quick Start

Install Ollama and enable the MCP tool, then start the agent to call local models.

Frequently Asked Questions about add-ollama-tool

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I expose local Ollama models to a container agent?

You expose local Ollama models to a container agent by adding a stdio-based MCP server. This server provides tools like ollama_list_models and ollama_generate, allowing the agent to offload offline inference tasks such as summarization and coding locally.

What is a stdio-based MCP server for local AI integration?

A stdio-based MCP server for local AI integration is an interface that connects container agents to local models using standard input and output. It allows Claude to act as an orchestrator while offloading work to local Ollama models.

Do I need Ollama installed to use local models for offline container tasks?

Yes, you need Ollama installed to use local models for offline container tasks. The guided workflow expects an existing Ollama setup to enable the MCP tool and allow the container agent to call local models for offline inference.

What's the best way to run offline model inference in an isolated sandbox?

The best way to run offline model inference in an isolated sandbox is using a guided pre-flight, apply, configure, and verify workflow. This exposes Ollama models via an MCP server, allowing container agents to call local models securely.

Can I configure a custom Ollama host for my containerized MCP tools?

Yes, you can configure a custom Ollama host for your containerized MCP tools. The server supports optional Ollama host configuration during the apply and configure phases, ensuring the agent connects to the correct local model endpoint.

Why use local models instead of the container agent for coding tasks?

You use local models instead of the container agent for coding tasks to offload processing work. Claude remains the orchestrator but delegates specific offline inference tasks to Ollama models, optimizing resource usage within isolated environments.