Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

GopherDigest

БесплатноНе проверен

MCP server that digests conversation transcripts via local Ollama (llama3.2) and stores extracted facts into GopherCache.

GitHubEmbed

Описание

MCP server that digests conversation transcripts via local Ollama (llama3.2) and stores extracted facts into GopherCache.

README

An MCP server that reads conversation transcripts from disk, sends them to a local Ollama instance for fact extraction, and merges the results into a GopherCache context.json file.

Prerequisites

  • Python 3.10+
  • Ollama running locally on http://localhost:11434
  • The llama3.2 model pulled in Ollama:
ollama pull llama3.2

Ollama must be running before any tool is called. Start it with ollama serve if it is not already running as a background service.

Installation

# Clone / enter the repo
cd gopherdigest

# Create and activate a virtual environment
python -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate

# Install the package
pip install -e .

Copy .env.example to .env and adjust if needed:

cp .env.example .env

Tools

Tool Description
digest_transcript(transcript_path, gophercache_context_path) Extracts facts from a transcript and merges them into context.json. Logs to data/digest_log.md.
summarize_only(transcript_path) Returns extracted facts as raw JSON text — no writes, safe for preview.
read_digest_log() Returns the full contents of data/digest_log.md.

Configuration

Variable Default Description
GOPHERDIGEST_DATA_DIR ./data Directory where digest_log.md is written.

Claude Desktop configuration

Add the following to your Claude Desktop claude_desktop_config.json (usually at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "gopherdigest": {
      "command": "python",
      "args": ["-m", "gopherdigest.server"],
      "cwd": "/absolute/path/to/gopherdigest",
      "env": {
        "GOPHERDIGEST_DATA_DIR": "./data"
      }
    }
  }
}

Replace /absolute/path/to/gopherdigest with the actual path where you cloned this repo.

If you installed into a virtual environment, point command at the venv interpreter instead:

{
  "mcpServers": {
    "gopherdigest": {
      "command": "/absolute/path/to/gopherdigest/.venv/bin/python",
      "args": ["-m", "gopherdigest.server"],
      "cwd": "/absolute/path/to/gopherdigest"
    }
  }
}

Running the server manually (for testing)

python -m gopherdigest.server

Or via the installed script:

gopherdigest

License

MIT — see LICENSE.

from github.com/GopherMCP/GopherDigest

Установить GopherDigest в Claude Desktop, Claude Code, Cursor

Рекомендуется · одна команда, все IDE
unyly install gopherdigest

Ставит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.

Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh

Или настроить вручную

Выполни в терминале:

claude mcp add gopherdigest -- uvx --from git+https://github.com/GopherMCP/GopherDigest gopherdigest

Пошаговые гайды: как установить GopherDigest

FAQ

GopherDigest MCP бесплатный?

Да, GopherDigest MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для GopherDigest?

Нет, GopherDigest работает без API-ключей и переменных окружения.

GopherDigest — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить GopherDigest в Claude Desktop, Claude Code или Cursor?

Открой GopherDigest на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare GopherDigest with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории ai