add-ollama-tool

Expose local Ollama models through an MCP server with two tools.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Expose a local Ollama MCP server so the container agent can call local models for faster, offline-friendly inference.

Core Features & Use Cases

  • Exposes Ollama models via an MCP server to enable fast local inference within container workflows.
  • Provides two tools: ollama_list_models and ollama_generate to discover models and generate responses.
  • Use Case: When building a containerized Claude orchestrator that requires low-latency access to local models for tasks like summarization or code generation.

Quick Start

Install Ollama on the host, pull at least one model, and restart the container to enable local model calls.

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 containerized agent via MCP?

Exposing local Ollama models via an MCP server enables the container agent to call local models. This integration provides tools for model discovery and generation, allowing containerized workflows to access local models for fast, offline-friendly inference.

Can I use local models for offline inference inside a containerized workflow?

Yes, using local models for offline inference inside a containerized workflow is possible by exposing an Ollama MCP server. This setup allows the container agent to perform low-latency tasks like summarization or code generation without relying on external network calls.

What do I need to set up before calling Ollama models from my container agent?

Before calling Ollama models from your container agent, you need Ollama installed and running on the host machine. You must also pull at least one local model and restart the container to activate the local model calls.

How does an Ollama MCP server handle model discovery and generation?

An Ollama MCP server handles model discovery and generation by providing two specific tools. The ollama_list_models tool discovers available local models, and the ollama_generate tool produces responses, enabling direct model interaction within the containerized environment.

When should I use local Ollama models instead of external API calls in containerized workflows?

Use local Ollama models instead of external API calls when containerized workflows require fast, offline-friendly, or low-latency inference. This approach is ideal for localized tasks such as summarization or code generation where minimizing network dependency is critical.