add-ollama-tool

Integrate an Ollama MCP server to list models and generate outputs in NanoClaw.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @modelcontextprotocol/sdk, zod.

What problem does it solve?

The Ollama MCP integration enables the container agent to call local Ollama models, reducing latency and avoiding external API calls for common NLP tasks.

Core Features & Use Cases

  • Exposes an Ollama MCP server as a tool with ollama_list_models and ollama_generate for local model access.
  • Integrates with the Claude-based agent to perform tasks like summarization, translation, and code-oriented queries using local models.
  • Suitable for development and production-like container workflows where network-bound inference is undesirable.

Quick Start

Install and apply this skill to enable Ollama tooling in NanoClaw.

Frequently Asked Questions about add-ollama-tool

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

FAQPage Schema
How do I run local model inference inside a containerized agent workflow?

Local model inference inside a containerized workflow is enabled by integrating an Ollama MCP server, exposing ollama_list_models and ollama_generate tools to execute NLP tasks without external API calls.

How does MCP integration with Ollama reduce latency for AI inference?

MCP integration with Ollama reduces latency by routing inference requests to local model instances, avoiding network-bound external API calls and enabling faster summarization, translation, and code assistance.

Can I use Ollama models for summarization and translation within NanoClaw?

Yes, generating outputs for summarization, translation, and code-oriented queries is supported by calling local Ollama models through the integrated MCP server within the NanoClaw container environment.

Do I need to configure OLLAMA_HOST to use local models in a container?

Configuring the OLLAMA_HOST environment variable is required to point the containerized agent to the local Ollama instance, ensuring the exposed MCP tools can successfully reach and list the models.

What is the best way to avoid external API calls for common NLP tasks in development containers?

Avoiding external API calls for NLP tasks in development containers is achieved by applying an Ollama MCP tooling skill, allowing the agent to generate outputs directly from local model instances.

When should I not use local Ollama instances for AI inference in production?

Local Ollama instances may not suit production contexts requiring massive scalability or specialized cloud accelerators, as this approach targets container workflows where avoiding network-bound inference is the priority.