Skip to main content
Glama

KSJ MCP Server

Knowledge Synthesis Journal v2.0 — AI companion

Current release: ksj-mcp v3.6.2 · built on MCP SDK v2.0.0

Turn your handwritten journal photos into a searchable, AI-powered knowledge base — privately, on your own machine.

Get the journal: Knowledge Synthesis Journal v2.0 on Amazon


Contents


Related MCP server: agrasandhany

What it does

The KSJ MCP server connects your knowledge — handwritten or digital — to an AI assistant via the Model Context Protocol (MCP) — an open standard for linking AI models to local tools and data.

Physical journal → knowledge base

Photograph a journal page, show it to your AI assistant, and it can:

  • Search across everything you've ever written

  • Find connections between ideas (shared tags, @ references)

  • Surface your open questions, key insights, and breakthroughs

  • Export your knowledge base as Markdown or JSON

How pages get in — two paths:

  1. Assistant vision (recommended). Share the photo in chat, let your assistant read the handwriting, confirm the transcription, and it stores the page with manual_capture. Modern AI vision is dramatically more accurate on handwriting than traditional OCR — this is the normal workflow.

  2. Local OCR (optional). upload_capture and bulk_upload run Tesseract on your machine. Fully offline, but Tesseract struggles badly with cursive handwriting — best for printed or very neat text.

Either way, a bad read is never permanent: correct_ocr replaces a stored capture's text and re-runs parsing, tags, and connections, while the original read is preserved.

AI research sessions → structured insights

Spend an hour going deep on a topic with an AI assistant and most of that thinking vanishes when the chat ends. extract_insights fixes that — paste or pipe a session transcript and the server extracts what matters:

  • Novel hypotheses and seed ideas

  • Unexpected connections between concepts

  • Open questions worth pursuing

  • Decisions made and action items

Each insight is confidence-scored (🟢 Seed / 🔴 Developing / 🟡 Strong) and shown to you for review before anything is written to the database. Approved entries are stored alongside your journal captures with full tag support, so AI-extracted insights surface in searches, connection graphs, and synthesis suggestions alongside your handwritten notes.

AI companions — an independent check on what you already wrote

Three pairs of tools go a step further than search and connections: each runs an independent AI pass against a page you've already written by hand, then walks you through what it found before anything gets stored. Same shape every time — scan → structured dialogue → your approval → a separate AI-Extracted entry. Your original page is never rewritten.

  • Synthesis. surface_connections re-derives connections across the RC cluster behind a SYN page — blind to what the page itself says — then compares its independent read against yours: what you both found, what it caught that you missed, what you saw that no tag overlap could have surfaced. commit_distillation stores what the comparison revealed once you approve it, linked to the SYN page with a distills edge.

  • Review. audit_knowledge_status checks a claimed Knowledge Status (Solid / Mastered) against real evidence still sitting in the journal — open questions and uncited insights on that topic. commit_assessment records the outcome with an assesses edge; your REV page's claimed status is never rewritten — a real status change only ever happens on a future hand-written page.

  • Dream Capture. dream_correlation reports plain co-occurrence between dream entries and your waking entries — deliberately labeled co-occurrence, not correlation, with the window size, match count, and base rate always shown, since a small journal can make anything look meaningful. bridge_dream_research builds on it with a dialogue about what a dream's symbols mean to you, and commit_observation stores the outcome with an observes edge — called an observation, not an inference, because that's what a journal this size can actually support.

Every one of these runs after the physical page exists, never before — running the check first would let the AI perform the thinking the physical practice exists to force. None has an override flag for that precondition, and the dialogues themselves are built to ask, not propose: a question makes you think; a suggested answer makes the AI think, in your place.

Local by default. Storage, search, and connections all live in a SQLite database on your machine — nothing is synced or hosted anywhere. When your AI assistant reads a journal photo with vision, that image is handled by your assistant's platform like any other chat attachment; the local Tesseract OCR path keeps everything on-machine. Optional cloud OCR for bulk imports exists but is off unless you explicitly enable it with your own key.


AI platform support

This server uses MCP (Model Context Protocol), an open standard with growing support across AI platforms and developer tools.

Currently supported:

  • Claude Desktop (free) — full MCP support, recommended for getting started

Other MCP-compatible clients (Cursor, VS Code + GitHub Copilot, and others) can connect using the same config — check your client's MCP documentation for setup details.

Using ChatGPT, Gemini, or another platform? Use the export_captures tool to dump your knowledge base as Markdown or JSON, then paste it into your AI assistant of choice. Full native MCP support for additional platforms is on the roadmap as the ecosystem grows.

Protocol compliance: ksj-mcp runs on the official Python MCP SDK v2.0.0 over the stdio transport, using the protocol's classic initialize-handshake model — negotiated up to protocol revision 2025-11-25. (MCP is versioned by dated spec release, not semantic version — "MCP SDK v2.0.0" above refers to the SDK package's own version number, not the protocol revision.)


Setup (3 steps)

No OCR software needed — your AI assistant reads the pages. (Want fully offline OCR too? See Optional: offline OCR after setup.)

Step 1 — Install an MCP-compatible AI client

The fastest way to get started is Claude Desktop (free at claude.ai/download).

For other MCP clients, consult their documentation for how to register a local MCP server, then use the config in Step 3.

Step 2 — Install uv and the KSJ server

uv is a fast Python package manager used to install and run the KSJ server.

Install uv:

Platform

Command

Windows

winget install astral-sh.uv or download from astral.sh/uv

macOS/Linux

curl -LsSf https://astral.sh/uv/install.sh | sh

Verify with uv --version in a terminal before continuing.

Install the KSJ server (run once in a terminal):

uv tool install --from git+https://github.com/ChavezAILabs/ksj-mcp ksj-mcp

This installs ksj-mcp as a persistent command on your machine. Git must be installed for this step (Windows: Git for Windows).

Verify with uv tool list — it should list ksj-mcp with a version number.

To update later:

uv tool upgrade ksj-mcp

Step 3 — Register the server

Claude Desktop config file location:

Platform

Path

Windows

%APPDATA%\Claude\claude_desktop_config.json

macOS/Linux

~/.config/claude/claude_desktop_config.json

Claude Desktop launches MCP servers with a limited PATH, so a bare "ksj-mcp" command often won't resolve even though it works fine in a terminal — use the full path to the binary uv tool install created in Step 2 instead:

Platform

Typical binary path

Windows

C:\Users\<you>\.local\bin\ksj-mcp.exe

macOS/Linux

~/.local/bin/ksj-mcp (expand ~ to the full path, e.g. /Users/<you>/.local/bin/ksj-mcp)

Add the following block (Windows example shown — swap in your macOS/Linux path if applicable):

{
  "mcpServers": {
    "ksj": {
      "command": "C:\\Users\\<you>\\.local\\bin\\ksj-mcp.exe"
    }
  }
}

Save and restart your AI client. You should see ksj listed in the tools/integrations panel.

Optional: offline OCR (Tesseract)

Only needed if you want upload_capture / bulk_upload to read photos fully on-machine instead of via your assistant's vision. Fair warning: Tesseract performs poorly on cursive handwriting — printed or very neat text works best.

Platform

Command

Windows

Download the installer from UB-Mannheim/tesseract — check "Add to PATH" during install

macOS

brew install tesseract

Linux

sudo apt install tesseract-ocr

After installing, restart your AI client so the updated PATH is picked up.

Windows note: If you skip "Add to PATH", the server will still auto-detect Tesseract at the default install location (C:\Program Files\Tesseract-OCR\).

Optional: cloud OCR for bulk imports

Off by default — nothing leaves your machine unless you turn this on.

Importing a whole folder of handwritten pages with bulk_upload is the one place local Tesseract really hurts: cursive comes out as noise, page after page. If you have a large backlog, you can point the server at your own Azure Document Intelligence resource (~9% word error rate on handwriting vs ~95% for Tesseract):

{
  "mcpServers": {
    "ksj": {
      "command": "C:\\Users\\<you>\\.local\\bin\\ksj-mcp.exe",
      "env": {
        "KSJ_OCR_BACKEND": "azure",
        "KSJ_AZURE_ENDPOINT": "https://<your-resource>.cognitiveservices.azure.com",
        "KSJ_AZURE_KEY": "<your-key>"
      }
    }
  }
}

(Use the command path from Step 3 for your platform.)

What this means for your data: each uploaded image is sent to your own Azure resource (your subscription, your key, Azure's data terms) for text extraction. Nothing else is sent anywhere, and your knowledge base stays local either way. Every upload's output states plainly when cloud OCR is active. Remove KSJ_OCR_BACKEND to return to fully local processing.

For a handful of pages, skip all of this — sharing the photo in chat and letting your assistant read it is free and just as accurate.


Usage

Once connected, talk to your AI assistant naturally.

Capturing pages (recommended flow):

[share a photo of the page in chat] "Read this journal page and add it to my knowledge base"

"Here's RC-007 — transcribe it, show me what you read, then store it"

Capturing via local OCR (optional, needs Tesseract):

"Upload my journal photo from /Users/me/Desktop/RC-001.jpg"

"Process all the photos in my /Desktop/journal-scans folder"

Fixing a bad read:

"Capture #12's text is wrong — here's the corrected transcription: …"

Searching & browsing:

"Search my notes for ideas about spaced repetition"

"Show me everything tagged #machine-learning"

"What are my open questions about calculus?"

"Show me everything connected to RC-015"

Synthesis & review:

"Which topics am I ready to synthesize into a SYN page?"

"Show me my breakthrough timeline"

"How is my understanding of #linear-algebra progressing?"

"Run surface_connections on SYN-004" → independent scan of the RC cluster behind it, then a dialogue comparing what it found against what you wrote

"Audit REV-008 against the evidence" → checks its claimed Knowledge Status against open questions and uncited insights still sitting on that topic

Dream Capture:

"What symbols and themes keep appearing in my dreams?"

"Show me all my dream entries from this month"

"Does #flying show up near any of my waking entries?" → plain co-occurrence counts, always with the window, match count, and base rate shown

"Bridge DC-005 to my research" → checks for cross-domain echo, then asks what the dream's symbols mean to you (never proposes an interpretation)

Export & health:

"Export all captures tagged #ai as Markdown"

"Generate a study deck from my open questions"

"How's my journal practice looking?"

"Give me a browsable view of my whole knowledge base" → writes a self-contained .html file — timeline (with date-range search and a 25-at-a-time load-more), tag/entity index, per-capture connection lists, and an ego-centric connection graph (click a tag cluster or a capture to see its local neighborhood, click any neighbor to recenter) — you can open in any browser, no server or install required


Available tools

All 36 tools below were individually exercised (real-data and bad-input cases) as part of the v3.6.0 ship-readiness pass. One scaling issue was found and fixed during the pass: export_study_deck on a very large knowledge base could join far too many connected insights into a single flashcard — now ranked by connection strength and capped.

Journal tools

Tool

What it does

get_version

Report the running ksj-mcp, mcp, pydantic, and Python versions — confirms an install or upgrade actually took effect

manual_capture

Store a page your assistant transcribed with vision — the primary capture path

upload_capture

OCR a journal photo locally (Tesseract), parse the template, store it, highlight strongest connection

correct_ocr

Replace a stored capture's text with a corrected transcription — re-parses tags and connections, preserves the original

identify_capture

Assign or fix a capture's template ID — pages with unreadable IDs are stored, never discarded

bulk_upload

Process a whole folder of photos at once (local OCR)

set_volume

Multiple journals: set which book new captures go into and which books search sees

assert_entity

Link a named entity (person, place, work, dream symbol) to a capture

assert_connection

Assert that one capture supersedes / refutes / narrows / supports / distills / assesses / observes another — superseded claims are kept in history but leave current search

rebuild_connections

Re-derive the connection graph from current tags and text (asserted edges are never touched)

find_path

Shortest chain of connections between two captures

neighborhood

Everything within N hops of a capture — its local knowledge cluster

lint

Health check: orphan captures, un-closed superseded claims, unresolved contradictions, stale open questions, fragmented tags

export_backup

Full knowledge base to a versioned JSONL file (format doc)

import_backup

Restore a JSONL backup — additive, nothing overwritten

export_html

Self-contained, offline HTML view — timeline with date search and load-more, tag/entity index, per-capture connection lists, and an ego-centric connection graph, opens in any browser

search_captures

Full-text search with optional tag and date filters

list_by_tag

Browse all captures with a given tag or prefix

find_connections

Show tag-overlap and @-reference connections for a capture

get_stats

Overview: counts, top tags, open questions, insights, date range

export_captures

Dump your knowledge base as Markdown or JSON

suggest_synthesis

Find RC topic clusters ready to become a SYN entry

surface_connections

Independently scan the RC cluster behind a SYN page you've already written, then run a structured comparison dialogue — runs after the page exists, never before; no DB write

commit_distillation

Store the confirmed outcome of a surface_connections dialogue as an AIEX entry, linked to its SYN page with an asserted distills edge

export_study_deck

Export ? questions as a portable CSV study deck (Anki, Quizlet, Notion, etc.)

journal_health

KPI dashboard + coaching: velocity, synthesis ratio, review cadence, open questions

get_breakthroughs

All SYN entries chronologically — your complete breakthrough timeline

dream_patterns

Recurring symbols, emotions, motifs, and themes across DC pages

dream_correlation

Co-occurrence between DC entries and RC/REV entries sharing a tag, within a day window — descriptive only: always reports the window, match count, and base rate, never claims "correlation" or significance

knowledge_progress

Track Needs Work → Solid → Mastered progression from REV entries

audit_knowledge_status

Independently check a REV page's claimed status against evidence (open questions, uncited insights), then run a structured dialogue over anything that doesn't line up — runs after the page exists, never before; no DB write

commit_assessment

Store the confirmed outcome of an audit_knowledge_status dialogue as an AIEX entry, linked to its REV page with an asserted assesses edge — never changes the REV page's own claimed status

bridge_dream_research

Independently check a DC page for cross-domain echo (via dream_correlation) and prepare a dialogue over what its symbols mean to you — runs after the page exists, never before; no DB write

commit_observation

Store the confirmed outcome of a bridge_dream_research dialogue as an AIEX entry, linked to its DC page with an asserted observes edge — never changes the DC page's own dream narrative

AI session tools

Tool

What it does

extract_insights

Prepare an AI research session for insight extraction — loads knowledge-base context, no DB write

commit_aiex

Store the reviewed, confirmed insights as AIEX entries after your approval


Schema tag system

Use these prefixes anywhere on your journal pages — the server extracts them automatically.

RC, SYN, REV pages:

Prefix

Meaning

Example

#

Topic / domain

#machine-learning

@

Source / reference

@RC-012

!

Priority / urgency

!deadline

?

Open question

?why-does-this-work

$

Key insight

$breakthrough

A→B

Cause / effect

study→retention

DC (Dream Capture) pages use a dream-specific variant:

Prefix

Meaning

Example

#

Dream theme

#flying

@

Symbol or character

@the-old-house

!

Recurring motif

!falling

*

Sensory detail

*cold-wind

Three things the server does with these automatically:

  • Roles. The same character means different things on DC pages than on RC/SYN/REV (! is priority on RC, a recurring motif on DC). The server stores the meaning alongside the character, so browsing by tag can distinguish them — ask for "priority items" vs "dream motifs".

  • Entities. An @ value that isn't a template ID (@Veronica, @the-old-house) becomes a named entity — searchable across every capture and every journal volume. Dream symbols and story characters are the same kind of object.

  • Tag bubbles. Anything written inside the printed tag bubbles counts as a tag, with or without the #. DOG MAN, Dog-Man, and DOG-MAN all normalize to the same tag.


Multiple journals (volumes)

Finished a journal and started a second one? The new book starts over at RC-001 — that's expected. Each physical journal is a volume, and volume 2 continues volume 1's knowledge base: search spans all volumes and cross-volume connections are normal.

When you start a new book, say so once:

"I'm starting my second journal" → the assistant runs set_volume(current_volume=2)

Or write the volume on the page itself (e.g. V2 next to the template ID), or pass volume=2 on a single upload. If an upload collides with an existing page ID, the server asks whether it's a new journal or a re-capture — nothing is ever silently overwritten.


Troubleshooting

"Tesseract OCR is not installed" You called upload_capture/bulk_upload, which need the optional local OCR engine. Either install Tesseract (Optional: offline OCR) and restart your AI client — or skip it entirely: share the photo in chat and ask your assistant to read and store the page instead.

"Stored as UNIDENTIFIED" The template ID couldn't be read from the photo, but the page and its text were stored anyway — nothing is lost. Tell your assistant the correct ID ("that's RC-007") and it will fix it with identify_capture. Sloppy or unpadded IDs (RC-7, RC-OO2, a stray letter after the number) are read automatically with a confirmation note.

OCR got the text wrong Ask your assistant to fix it with correct_ocr — give it the capture number and the corrected text. The original read is preserved, and tags and connections are rebuilt from the correction.

"RC-001 already exists in your knowledge base" You're re-uploading a page that's already stored. To replace it with the new photo (e.g. after a cleaner retake), ask your AI assistant to upload with force=True:

"Upload /path/to/RC-001.jpg with force=True"

"Server transport closed unexpectedly" / server not starting Run uv tool list in a terminal — it should list ksj-mcp with a version number. If it's missing, re-run the install command from Step 2. If it's installed, the issue is likely the Claude Desktop config — double-check it is valid JSON and that command is the full path to the ksj-mcp binary (see Step 3), not just "ksj-mcp".

Server not appearing in tools panel Confirm uv tool list shows ksj-mcp installed, verify the config file is valid JSON, and restart Claude Desktop after saving any config changes. Once it's connected, ask your assistant to use the get_version tool — that confirms the server is actually running and reachable, not just installed.


Data location

All your captures are stored locally in ~/.ksj-mcp/:

Platform

Path

Windows

C:\Users\<you>\.ksj-mcp\

macOS/Linux

~/.ksj-mcp/

Files:

~/.ksj-mcp/captures.db     (SQLite database — all your captures and tags)
~/.ksj-mcp/images/         (copies of uploaded journal photos)

Your data is never sent anywhere and persists across updates. Schema upgrades run automatically on server start; before the first 3.0 start your database is backed up to captures.db.bak-v3 in the same folder.

Custom location: Set the KSJ_DATA_DIR environment variable in your config to store data elsewhere:

{
  "mcpServers": {
    "ksj": {
      "command": "C:\\Users\\<you>\\.local\\bin\\ksj-mcp.exe",
      "env": {
        "KSJ_DATA_DIR": "C:\\Users\\you\\Documents\\ksj-data"
      }
    }
  }
}

(Use the command path from Step 3 for your platform.)


License

MIT — free to use, modify, and share.

Created by Chavez AI Labs LLC paul@chavezailabs.com

Get the journal: Knowledge Synthesis Journal v2.0 (Amazon)

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Local-first MCP server that extracts structured knowledge from markdown notes into SQLite with full-text search, enabling AI coding tools to retrieve relevant context offline at zero cost.
    3
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Turns a local folder of notes and documents into a searchable knowledge base for AI assistants via MCP, enabling semantic search, reading, and adding notes entirely on-device.
    4
    9
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    A local MCP server for journaling, organizing, and recalling your work. It captures entries as plain markdown files, indexes them for full-text and structured search, and enables querying via natural language.
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

  • Token-efficient MCP memory for Markdown vaults. Tiered search, GraphRAG, AI memories.

  • Cross-AI personal memory. Save once in ChatGPT, recall in Claude, Mistral, Grok, or any MCP client.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ChavezAILabs/ksj-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server