Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MakeaMouse/fish-bridge-mcp MCP server](https://glama.ai/mcp/servers/MakeaMouse/fish-bridge-mcp/badges/score.svg)](https://glama.ai/mcp/servers/MakeaMouse/fish-bridge-mcp) 🐍 🏠 🍎 πŸͺŸ 🐧 - Compresses AI chat sessions into a typed knowledge graph (~300–800...

README.md

fish_bridge

<!-- mcp-name: io.github.MakeaMouse/fish-bridge-mcp -->

![CI](https://github.com/MakeaMouse/fish-bridge-mcp/actions/workflows/ci.yml) ![PyPI](https://pypi.org/project/fish-bridge-mcp/) ![Python](https://pypi.org/project/fish-bridge-mcp/) ![License: MIT](LICENSE)

Session-scoped knowledge graph engine for AI chat context compression.

Converts raw AI chat (40k+ tokens) into a compact typed knowledge graph (~300–800 tokens) and writes it to .github/copilot-instructions.md or CLAUDE.md β€” automatically included in every AI turn across all modes (ask, edit, agent). No MCP server required for the core workflow.

Raw session (40k tokens) β†’ [fish_bridge] β†’ Compressed graph (350 tokens)
                                              written to copilot-instructions.md
                                              picked up by every AI turn automatically

Install

Don't have uv? Get it first: curl -LsSf https://astral.sh/uv/install.sh | sh (macOS/Linux) or see uv docs. It replaces pip + pipx + pyenv in one tool β€” no virtualenv management needed.

Recommended β€” uv tool install (installs both the fish-bridge CLI and fish-bridge-mcp MCP server on your PATH):

# Local Ollama backend β€” free, offline (requires Ollama running)
uv tool install fish-bridge-mcp

# Gemini backend (~$0.0002/turn, ~95% quality β€” recommended cloud option)
uv tool install "fish-bridge-mcp[gemini]"
export GEMINI_API_KEY=...

# Claude backend (~$0.002/turn, ~97% quality)
uv tool install "fish-bridge-mcp[claude]"
export ANTHROPIC_API_KEY=sk-ant-...

# OpenAI backend (~$0.0003/turn, ~93% quality)
uv tool install "fish-bridge-mcp[openai]"
export OPENAI_API_KEY=sk-...

# Everything
uv tool install "fish-bridge-mcp[all]"

After install, two commands are available on your PATH:

  • fish-bridge β€” the main CLI (ingest, compile, show, serve, ...)
  • fish-bridge-mcp β€” the MCP server for VS Code agent mode

MCP config only (no permanent install needed): use uvx directly in your .vscode/mcp.json β€” it downloads and runs the MCP server on demand:

{ "command": "uvx", "args": ["fish-bridge-mcp"] }

See the MCP server section below for the full config.

<details> <summary>Traditional pip install (for embedding fish-bridge as a library in your own Python project)</summary>

pip install fish-bridge-mcp
pip install "fish-bridge-mcp[gemini]"   # with Gemini backend
pip install "fish-bridge-mcp[claude]"   # with Claude backend
pip install "fish-bridge-mcp[all]"      # everything

</details>

2-minute quickstart

# 1. Initialize for your project
fish-bridge init --tool copilot --project ./

# 2. Ingest the latest Copilot session (auto-discovers JSONL on macOS/Linux/Windows)
fish-bridge ingest --source copilot

# 3. View the graph
fish-bridge show

# 4. Compile to your instructions file (done automatically after ingest)
fish-bridge compile

That's it. .github/copilot-instructions.md now contains a ~350-token compressed summary of your session, replacing raw history in every future turn.

Backends

| Backend | Install extra | Model | Quality | Cost/turn | |---|---|---|---|---| | local (Ollama) | (none β€” requires Ollama) | qwen2.5:7b | ~85% | $0 | | gemini | [gemini] | gemini-2.5-flash | ~95% | ~$0.0002 | | openai | [openai] | gpt-4.1-mini | ~93% | ~$0.0003 | | claude | [claude] | claude-opus-4-7 | ~97% | ~$0.002 | | hybrid | [claude] or [openai] | local+cloud | best | mixed |

Configure with: ```bash fish-bridge config --backend gemini

or set GEMINI_API_KEY / ANTHROPIC_API_KEY / OPENAI_API_KEY as env vars


## Full CLI reference

--- Session init ---

fish-bridge init # create session for current project fish-bridge init --tool claude # β†’ writes to CLAUDE.md instead

--- Ingest chat turns ---

fish-bridge ingest --source copilot # auto-discover latest VS Code Copilot session fish-bridge ingest --source copilot --session <id> # target specific session fish-bridge ingest --source paste # paste any chat text β€” opens $EDITOR (universal fallback) fish-bridge ingest --source file --file export.json # from a saved export file fish-bridge watch --source copilot # tail JSONL, auto-update on new turns

--- Merge external knowledge ---

fish-bridge merge --source document --file HANDOVER.md fish-bridge merge --source codebase --path ./ # git log + README fish-bridge merge --source obsidian --vault ~/notes fish-bridge merge --source deps --path ./ # package.json / pyproject.toml etc. fish-bridge merge --source testout --file results.json # jest / pytest / JUnit fish-bridge merge --source iac --path ./ # Terraform / CDK / CloudFormation fish-bridge merge --source openapi --file openapi.yaml fish-bridge merge --source session --file prior.chatgraph.json

--- Compile & view ---

fish-bridge compile # update instruction file (runs after ingest by default) fish-bridge compile --mode digest # full handover markdown fish-bridge compile --mode focus --query "Redis caching" fish-bridge show # pretty-print active nodes fish-bridge show --all # include resolved/deferred items fish-bridge serve # open Cytoscape.js graph viewer at localhost:8080 fish-bridge digest # generate handover digest

--- Node management ---

fish-bridge resolve "DNC caching strategy" fish-bridge defer "v16 index validation" fish-bridge add "Use Redis for session cache" --type decision fish-bridge conflict show fish-bridge conflict resolve <node-id> --keep old

--- Export / import / diff ---

fish-bridge export # save .chatgraph.json fish-bridge import prior-session.chatgraph.json fish-bridge diff session-a.chatgraph.json session-b.chatgraph.json

--- Config ---

fish-bridge config --show fish-bridge config --backend gemini ```

MCP server (optional β€” agent mode only)

The MCP server adds real-time record_turn capture when using VS Code agent mode. It is not required β€” the file-based workflow above works in all modes without it.

Add to .vscode/mcp.json (uses uvx β€” no prior install needed): ``json { "servers": { "fish-bridge": { "command": "uvx", "args": ["fish-bridge-mcp"], "env": { "FISH_BRIDGE_BACKEND": "gemini", "GEMINI_API_KEY": "${env:GEMINI_API_KEY}" } } } } ``

If you used uv tool install fish-bridge-mcp, you can also reference the installed binary directly: ``json { "command": "fish-bridge-mcp" } ``

See examples/ for Claude Desktop, Cursor, and Windsurf configs.

MCP tools: record_turn, get_context, get_focus, mark_resolved, add_node, export_session, import_session, show_active, list_deferred

Ingest sources

| Source | Command | What it ingests | |---|---|---| | Copilot | ingest --source copilot | VS Code Copilot JSONL transcript (auto-discovered) | | Paste | ingest --source paste | Any chat text β€” universal fallback | | Document | merge --source document | Markdown, JSON, YAML specs and ADRs | | Codebase | merge --source codebase | Git commits + README + HANDOVER | | Obsidian | merge --source obsidian | Vault notes with wikilinks and frontmatter | | Session | merge --source session | Prior .chatgraph.json export | | Deps | merge --source deps | package.json, pyproject.toml, Cargo.toml, go.mod, Gemfile, pom.xml | | Test output | merge --source testout | Jest JSON, pytest JSON, JUnit XML β€” error nodes per failing test | | IaC | merge --source iac | Terraform, CDK (synth output), CloudFormation, docker-compose | | OpenAPI | merge --source openapi | OpenAPI 3.x / Swagger 2.0 / AsyncAPI specs |

How it works

  1. Ingest β€” reads raw chat turns from JSONL (Copilot), paste, or any file format
  2. Extract β€” LLM extracts typed nodes (questions, decisions, errors, tasks, skills, files) and edges
  3. Dedup β€” semantic similarity merges near-duplicates; conflict detection flags status reversals
  4. Compile β€” graph is compressed to ~300–800 token XML/markdown block
  5. Write β€” block is written to .github/copilot-instructions.md (or CLAUDE.md)
  6. Deliver β€” AI tool reads the file automatically on the next turn β€” no injection, no agent required

Documentation

License

MIT β€” see LICENSE

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.