MCP Hub
Back to servers

Project Tessera

Local workspace memory for Claude Desktop. Indexes documents into a vector store with hybrid search, cross-session memory, auto-learn, and knowledge graph.

glama
Stars
6
Forks
1
Updated
Mar 7, 2026
Validated
Mar 9, 2026

Tessera

Make Claude Desktop remember your entire workspace.

You have hundreds of documents — PRDs, meeting notes, decision logs, session records. Claude Desktop can read files you attach, but it can't search across your whole workspace. Tessera bridges that gap.

It indexes your local documents into a vector store and connects to Claude Desktop via MCP. When you ask a question, Claude automatically searches your files and answers with context — and remembers across sessions.

Tessera demo — search documents, get answers with citations, remember across sessions

Project Tessera MCP server

Why Tessera?

  • Zero external dependencies — No Ollama, no Docker, no API keys. Just pip install and go.
  • Cross-session memory — Claude remembers your decisions, preferences, and context between conversations.
  • Knowledge graph — Visualize how your documents connect to each other.
  • 100% local — Everything stays on your machine. Nothing leaves your laptop.

How it works

  1. You point Tessera at your document folders (Markdown, CSV, session logs)
  2. Tessera indexes them locally using fastembed (ONNX) + LanceDB
  3. Claude Desktop searches them automatically via MCP tools
  4. Only changed files are re-indexed on each sync

Get started

Install + Setup

git clone https://github.com/besslframework-stack/project-tessera.git
cd project-tessera

python3 -m venv .venv && source .venv/bin/activate
pip install -e .

tessera init

tessera init walks you through everything:

  • Picks your document root directory
  • Scans for folders with documents
  • Lets you choose which to index
  • Downloads the embedding model (~220MB, once)
  • Generates workspace.yaml automatically
  • Shows you the Claude Desktop config snippet
  • Offers to index immediately

Connect to Claude Desktop

tessera init prints the config snippet. Add it to your claude_desktop_config.json:

{
  "mcpServers": {
    "tessera": {
      "command": "/path/to/project-tessera/.venv/bin/python",
      "args": ["/path/to/project-tessera/mcp_server.py"]
    }
  }
}

Restart Claude Desktop. You'll see "tessera" in the MCP integrations.

What Claude can do with Tessera

ToolWhat it does
Search
search_documentsSemantic + keyword hybrid search across all your docs
read_fileRead any file's full content
list_sourcesSee what's indexed
Memory
rememberSave knowledge that persists across sessions
recallSearch past memories from previous conversations
learnAuto-learn: save and immediately index new knowledge
Knowledge Graph
knowledge_graphBuild a Mermaid diagram of document relationships
explore_connectionsShow connections around a specific topic
Indexing
ingest_documentsIndex your documents (first-time setup or full rebuild)
sync_documentsIncremental sync — only re-index changed files
Workspace
project_statusSee what's changed recently in each project
extract_decisionsFind past decisions from logs
audit_prdCheck PRD quality (section coverage, versioning)
organize_filesMove, rename, archive files
suggest_cleanupDetect backup files, empty dirs, misplaced files

CLI commands

tessera init                    # Interactive setup
tessera ingest                  # Index all configured sources
tessera ingest --path ./docs    # Index a specific directory
tessera sync                    # Re-index only changed files
tessera status                  # Show all projects
tessera status my_project       # Show one project's status

Architecture

Your documents (Markdown, CSV)
        |
   Parse & chunk (~800 chars)
        |
   Embed locally (fastembed/ONNX)
        |
   Store in LanceDB (local vector DB)
        |
   Expose via MCP server
        |
   Claude Desktop searches automatically

Configuration

After tessera init, your workspace.yaml looks like:

workspace:
  root: /Users/you/Documents
  name: my-workspace

sources:
  - path: project-alpha
    type: document
    project: project_alpha

projects:
  project_alpha:
    display_name: Project Alpha
    root: project-alpha

Edit it anytime to add/remove sources. Run tessera sync after changes.

License

AGPL-3.0 — see LICENSE.

For commercial licensing: bessl.framework@gmail.com

Reviews

No reviews yet

Sign in to write a review