npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentsolutionsio/geepers-agents

v1.0.2

Published

Multi-agent orchestration system with MCP tools and Claude Code plugin agents. 51 specialized agents for development workflows, code quality, deployment, research, and more.

Readme

Geepers

Multi-agent orchestration system with MCP tools and Claude Code plugin agents.

Installation

From PyPI (MCP tools)

pip install geepers

# With optional dependencies
pip install geepers[all]
pip install geepers[anthropic,openai]

As Claude Code Plugin (agents)

/plugin add lukeslp/geepers

What's Included

43 Specialized Agents

Markdown-defined agents for Claude Code that provide specialized workflows:

| Category | Agents | Purpose | |----------|--------|---------| | Master | conductor_geepers | Intelligent routing to specialists | | Checkpoint | scout, repo, status, snippets, orchestrator | Session maintenance | | Deploy | caddy, services, validator, orchestrator | Infrastructure | | Quality | a11y, perf, api, deps, critic, orchestrator | Code audits | | Fullstack | db, design, react, orchestrator | End-to-end features | | Research | data, links, diag, citations, orchestrator | Data gathering | | Games | game, gamedev, godot, orchestrator | Game development | | Corpus | corpus, corpus_ux, orchestrator | Linguistics/NLP | | Web | flask, orchestrator | Web applications | | Python | pycli, orchestrator | Python projects |

90+ MCP Tools

Six specialized MCP servers expose tools for:

  • geepers-unified - All tools in one server
  • geepers-providers - 13 LLM providers (Anthropic, OpenAI, xAI, etc.)
  • geepers-data - 29+ data sources (Census, arXiv, GitHub, NASA, etc.)
  • geepers-cache - Redis-backed caching
  • geepers-utility - Document parsing, citations, TTS
  • geepers-websearch - Multi-engine web search

FREE Alternative: Use Ollama for Local LLM

Want to run geepers without paying for LLM APIs? Replace Anthropic/OpenAI/xAI with Ollama for $0/month.

Quick Comparison

| Component | Paid (Cloud APIs) | FREE (Ollama) | |-----------|-------------------|---------------| | LLM Provider | Anthropic/OpenAI/xAI | Ollama (local) | | Monthly Cost | $50-200/mo | $0/mo | | Privacy | Data sent to cloud | 100% local | | API Keys | Required (3+ keys) | None required | | Rate Limits | Yes (varies by tier) | Unlimited | | Latency | 2-5s (network) | 1-3s (local) |

Savings: $600-2,400/year for multi-agent orchestration.

Why Ollama for Geepers?

Benefits:

  • Zero Cost: No API usage fees for 43 agents
  • Privacy: All 90+ MCP tools run locally
  • Unlimited: Run as many agent calls as needed
  • Offline: No internet required after model download
  • GDPR/HIPAA: Compliant by default (local-only)

Recommended Models:

  • llama3.2:7b - Best for general agents (4GB)
  • mistral:7b - Fast and efficient (4GB)
  • codellama:13b - Code-focused agents (7GB)
  • mixtral:8x7b - Advanced reasoning (26GB)

Setup Guide

1. Install Ollama

# macOS
brew install ollama
brew services start ollama

# Linux
curl -fsSL https://ollama.com/install.sh | sh
sudo systemctl start ollama

# Pull model (4GB download)
ollama pull llama3.2

See ollama-local-ai plugin for detailed setup.

2. Install Geepers with Local LLM Support

# Install without paid provider dependencies
pip install geepers

# No need for [anthropic,openai] extras!

3. Configure Ollama as LLM Provider

Create ~/.geepers/config.yaml:

llm:
  provider: ollama
  base_url: http://localhost:11434
  model: llama3.2
  temperature: 0.7

# No API keys required!

4. Update MCP Config

{
  "mcpServers": {
    "geepers": {
      "command": "geepers-unified",
      "env": {
        "GEEPERS_LLM_PROVIDER": "ollama",
        "OLLAMA_BASE_URL": "http://localhost:11434",
        "OLLAMA_MODEL": "llama3.2"
      }
    }
  }
}

Cost Comparison: 43 Agents

Cloud APIs (Anthropic/OpenAI)

43 agents × 1000 calls/month × $0.002/call = $86/month
Annual cost: $1,032

Required API Keys:

  • Anthropic Claude API: $50-100/mo
  • OpenAI GPT-4: $30-80/mo
  • xAI Grok: $20-50/mo
  • Total: $100-230/mo

Ollama (Local LLM)

43 agents × unlimited calls/month × $0 = $0/month
Annual cost: $0

Required:

  • Hardware you already own
  • One-time model download (4-26GB)
  • Total: $0/mo

Savings: $1,200-2,760/year

Migration Examples

Before (Paid APIs)

# Install with paid dependencies
pip install geepers[anthropic,openai]

# Set API keys
export ANTHROPIC_API_KEY=sk-ant-...
export OPENAI_API_KEY=sk-...
export XAI_API_KEY=xai-...

Monthly Cost: $100-230

After (Ollama)

# Install without paid dependencies
pip install geepers

# Start Ollama (one-time setup)
ollama pull llama3.2
ollama serve

# Configure geepers
export GEEPERS_LLM_PROVIDER=ollama
export OLLAMA_BASE_URL=http://localhost:11434

Monthly Cost: $0

Real Use Case: Multi-Agent Session

Scenario: Running geepers_orchestrator_checkpoint (5 agent calls per session)

Cloud APIs Version

# Using Anthropic Claude
import anthropic

client = anthropic.Anthropic(api_key="sk-ant-...")
response = client.messages.create(
    model="claude-3-5-sonnet-20241022",
    messages=[{"role": "user", "content": "Scout the repo"}]
)

Cost per session: 5 calls × $0.002 = $0.01 Monthly (100 sessions): $1.00 Annual: $12.00

Ollama Version

# Using local Ollama
import ollama

response = ollama.chat(
    model='llama3.2',
    messages=[{"role": "user", "content": "Scout the repo"}]
)

Cost per session: 5 calls × $0 = $0.00 Monthly (100 sessions): $0.00 Annual: $0.00

Same intelligence, zero cost.

Performance Comparison

| Metric | Cloud APIs | Ollama (Local) | |--------|-----------|----------------| | Response Time | 2-5s | 1-3s (with GPU) | | Throughput | Rate limited | Unlimited | | Privacy | Cloud processed | 100% local | | Offline | ❌ Requires internet | ✅ Works offline | | Cost (1M tokens) | $10-30 | $0 |

Agent-Specific Recommendations

Fast Agents (scout, status, snippets):

ollama pull llama3.2:7b  # Fast, 4GB

Code Agents (pycli, react, db, flask):

ollama pull codellama:13b  # Code-optimized, 7GB

Research Agents (data, citations, corpus):

ollama pull mixtral:8x7b  # Advanced reasoning, 26GB

Game Dev Agents (game, godot, gamedev):

ollama pull llama3.2:7b  # Balanced, 4GB

When to Use Cloud vs Local

Use Cloud APIs (Anthropic/OpenAI) if:

  • You need latest GPT-4 Turbo or Claude Opus specifically
  • Your hardware has <8GB RAM
  • You need real-time web search results
  • Budget allows $100-230/month

Use Ollama (Local LLM) if:

  • You want $1,200-2,760/year savings
  • You need privacy/compliance (HIPAA, GDPR, SOC2)
  • You have 8GB+ RAM (16GB+ recommended)
  • You want unlimited agent calls
  • You need offline capability

Hybrid Approach

Best of both worlds: Use Ollama for 90% of calls, cloud APIs for specialized tasks.

# ~/.geepers/config.yaml
llm:
  default_provider: ollama  # $0/mo for most calls
  fallback_provider: anthropic  # Only when needed

providers:
  ollama:
    base_url: http://localhost:11434
    model: llama3.2
  anthropic:
    api_key: ${ANTHROPIC_API_KEY}
    model: claude-3-5-sonnet-20241022

Cost Reduction: ~90% savings ($10-23/mo instead of $100-230/mo)

Resources

Bottom Line: For 43 specialized agents running locally, Ollama saves $1,200-2,760/year with comparable performance.


Configuration

Claude Code MCP Config

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "geepers": {
      "command": "geepers-unified"
    }
  }
}

Environment Variables

# LLM Providers
ANTHROPIC_API_KEY=...
OPENAI_API_KEY=...
XAI_API_KEY=...

# Data Sources
GITHUB_TOKEN=...
NASA_API_KEY=...
CENSUS_API_KEY=...

Usage

Using Agents in Claude Code

@geepers_scout          # Quick project reconnaissance
@geepers_caddy          # Caddy configuration changes
@geepers_orchestrator_checkpoint  # End-of-session cleanup

Using MCP Tools

Once configured, tools are available via the MCP protocol.

Development

# Clone and install in dev mode
git clone
cd geepers
pip install -e .

# Run tests
pytest

License

MIT License - Luke Steuber