Skip to main content
Glama
egoughnour

cowork-history

by egoughnour

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
OLLAMA_URLNoOllama server URLhttp://localhost:11434
EMBEDDING_MODELNoOllama embedding modelnomic-embed-text

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
history_system_checkA

Check if system meets requirements for Ollama embeddings.

Verifies: macOS, Apple Silicon (M1/M2/M3/M4), RAM, Homebrew. Use before attempting Ollama setup.

history_setup_ollamaA

Install Ollama via Homebrew (macOS).

Requires Homebrew pre-installed. Uses 'brew install' and 'brew services'. PROS: Auto-updates, pre-built binaries, managed service. CONS: Requires Homebrew, may prompt for sudo on first install.

history_setup_ollama_directA

Install Ollama via direct download (macOS).

Downloads from ollama.com to ~/Applications. PROS: No Homebrew needed, no sudo required, fully headless. CONS: Manual PATH setup, no auto-updates.

history_ollama_statusA

Check Ollama server status and available models.

Returns whether Ollama is running and if the embedding model is available. Use to check if semantic/vector search is available.

cowork_history_searchA

Search Claude conversation history using hybrid search.

Combines FTS5 full-text search, macOS Spotlight content indexing, and optional vector similarity (requires Ollama). Supports natural language, keywords, and "exact phrases".

Examples:

  • "authentication bug" - finds conversations mentioning both words

  • "how to deploy" - semantic search finds related discussions

  • project:"my-app" query:"database" - filter by project

cowork_history_listA

List recent Claude conversations from the index, sorted by modification time.

cowork_history_getA

Get full content of a specific conversation by session ID.

cowork_history_projectsB

List all projects with conversation history, showing reconstructed paths.

cowork_history_statsB

Get statistics about conversation history and search capabilities.

cowork_history_reindexA

Rebuild the conversation index and optionally generate embeddings.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.4/5.0

Scored across 10 tools

Disambiguation3/5

Most tools are distinct, but history_setup_ollama_direct and history_setup_ollama overlap as two installation methods for the same software. history_system_check and history_ollama_status are also somewhat related, though they check different aspects. Descriptions help clarify, but some ambiguity remains.

Naming Consistency2/5

Naming is inconsistent: tools use two different prefixes (history_ vs cowork_history_) and mix verb-first (setup_ollama, search) with noun-first (system_check, ollama_status) patterns. This makes the tool set feel disjointed and harder to predict.

Tool Count4/5

10 tools is within a reasonable range, but four of them are dedicated to Ollama setup/status, which is an optional dependency. This makes the set slightly heavier than necessary, though each tool still serves a distinct purpose.

Completeness4/5

The core history tools cover search, list, get, projects, stats, and reindex, providing solid lifecycle coverage for querying and maintaining conversation history. Minor gaps exist, such as lack of delete or export functionality, but they are not critical for the primary use case.

Maintenance

ActivityInactive
ResponsivenessNo issues