Extract searchable knowledge from any document. Expose it to LLMs via MCP.
Reason this release was yanked:
blocking hang
Project description
punt-quarry
Local semantic search across your documents. Works with Claude Desktop, Claude Code, and the macOS menu bar.
Quick Start
Claude Desktop
Download punt-quarry.mcpb and double-click to install. Claude Desktop will prompt you for a data directory.
Attach a document to your conversation and ask Claude to index it:
"Index this report"
"What does it say about Q3 margins?"
That's it. Everything runs locally — no API keys, no cloud accounts. The embedding model (~500 MB) downloads automatically on first use.
Claude Code
curl -fsSL https://raw.githubusercontent.com/punt-labs/quarry/6a8bbcc/install.sh | sh
Manual install (if you already have uv)
uv tool install punt-quarry
quarry install
quarry doctor
Verify before running
curl -fsSL https://raw.githubusercontent.com/punt-labs/quarry/6a8bbcc/install.sh -o install.sh
shasum -a 256 install.sh
cat install.sh
sh install.sh
What You Can Do
Index anything you have. PDFs, scanned documents, images, spreadsheets, presentations, source code, Markdown, LaTeX, DOCX, HTML, and webpages. Quarry parses each format natively — text extraction, OCR, tabular serialization, AST parsing — and indexes the content for semantic search.
Search by meaning. Retrieval is by meaning, not keyword — a query about "margins" finds passages about profitability even if they never use that word.
Give your LLM access. As an MCP server, Quarry lets Claude Desktop and Claude Code search your indexed documents directly. Ask Claude about something in your files and it pulls the relevant context automatically.
Keep things organized. Named databases separate work from personal. Directory sync watches your folders and re-indexes when files change. Collections group documents within a database.
Supported Formats
| Source | What happens |
|---|---|
| PDF (text pages) | Text extraction via PyMuPDF |
| PDF (image pages) | OCR (local by default; optional cloud backend) |
| Images (PNG, JPG, TIFF, BMP, WebP) | OCR (local by default; optional cloud backend) |
| Spreadsheets (XLSX, CSV) | Tabular serialization preserving structure |
| Presentations (PPTX) | Slide-per-chunk with tables and speaker notes |
| HTML / webpages | Boilerplate stripping, converted to Markdown |
| Text files (TXT, MD, LaTeX, DOCX) | Split by headings, sections, or paragraphs |
| Source code (30+ languages) | AST parsing into functions and classes |
Claude Desktop
The easiest way to install is the .mcpb file — download and double-click. Claude Desktop handles the rest. Alternatively, quarry install (from the CLI) configures Claude Desktop automatically.
Once installed, Claude can search, index, and manage your documents through conversation. Ask it to index a file, search your knowledge base, or crawl a documentation site — Quarry handles the rest behind the scenes.
Note: Uploaded files in Claude Desktop live in a sandbox that Quarry cannot access. Use remember for uploaded content, or provide local file paths to ingest.
Manual MCP setup
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"quarry": {
"command": "/path/to/uvx",
"args": ["--from", "punt-quarry", "quarry", "mcp"]
}
}
}
Use the absolute path to uvx (e.g. /opt/homebrew/bin/uvx). quarry install resolves this automatically.
Claude Code
quarry install configures Claude Code automatically, or set up manually:
claude mcp add quarry -- uvx --from punt-quarry quarry mcp
Ambient Knowledge (Plugin)
As an MCP server, Quarry is a tool you call — /find, /ingest, explicit commands. As a Claude Code plugin, Quarry changes how Claude Code itself works. The host becomes knowledge-aware.
Learning. Knowledge flows through every session and normally evaporates — web research, document reads, debugging discoveries, architectural decisions. The plugin captures this passively. Hooks detect knowledge-generating events and ingest them automatically. You work normally; the knowledge base grows.
Four hooks are shipped today:
- Session start — auto-registers the project directory so new files are indexed on sync.
- Post web fetch — every URL Claude fetches is auto-ingested into the knowledge base.
- Pre-compact — conversation transcript is captured before context compaction, preserving discoveries that would otherwise be lost.
- Convention hints — soft reminders when Bash commands drift from project conventions (e.g.,
git add -Ainstead of specific files,pipinstead ofuv, committing without running the quality gate). Hints are advisory — they never block commands.
Per-project hook configuration via .claude/quarry.local.md YAML frontmatter lets you selectively disable individual hooks (convention_hints: false). All hooks are fail-open (quarry crashing never breaks Claude Code) and non-blocking.
Recall. Having the knowledge isn't enough if Claude doesn't know to look there. The plugin will inject a knowledge briefing at session start and nudge Claude before web searches that overlap with locally indexed content. The second time you research something, it's instant.
Roadmap. The full ambient knowledge architecture adds config-driven capture levels and recall hooks:
/quarry learn off — No passive capture (default without plugin)
/quarry learn on — Capture web research + compaction transcripts
/quarry learn all — Also capture document reads, agent findings, session digests
| What happens | When | Status |
|---|---|---|
| Web pages saved | URLs Claude fetches are auto-ingested | Shipped |
| Conversations preserved | Before context compaction, the transcript is captured | Shipped |
| Project directory registered | Session start auto-registers the project | Shipped |
| Convention hints | Soft reminders when commands drift from project conventions | Shipped |
| Knowledge briefing | Session start — Claude knows what's in your knowledge base | Planned |
| Local-first nudge | Before web search — suggests checking quarry for familiar topics | Planned |
| Documents indexed | Non-code files Claude reads (PDFs, images) are queued | Planned |
| Agent findings saved | Research subagent results are captured | Planned |
For the full architecture, see research/vision.md.
Menu Bar App (macOS)
Quarry Menu Bar is a native macOS companion app that puts your knowledge base one click away. It sits in the menu bar and lets you search across all your indexed documents without switching apps.
- Semantic search with instant results
- Switch between named databases
- Syntax-highlighted results for code, Markdown, and prose
- Detail view with full page context
Everything you index — whether through Claude Desktop, Claude Code, or the CLI — is searchable from the menu bar. The app manages its own quarry serve process automatically. Requires macOS 14 (Sonoma) or later and punt-quarry installed.
CLI
The CLI gives you direct control over indexing and search. Everything Claude can do through MCP tools, you can do from the terminal.
# Ingest
quarry ingest report.pdf # index a file
quarry ingest report.pdf --overwrite # replace existing data
quarry ingest https://example.com/page # index a webpage (auto-detects sitemaps)
echo "meeting notes" | quarry remember --name notes.md # index inline text
# Search
quarry find "revenue trends" # semantic search
quarry find "revenue" --limit 5 # limit results
quarry find "tests" --page-type code # only code results
quarry find "revenue" --source-format .xlsx # only spreadsheet results
quarry find "deploy" --document README.md # search within one document
# Manage documents
quarry list documents # list indexed documents
quarry list collections # list collections
quarry show report.pdf # document metadata
quarry show report.pdf --page 1 # page text
quarry delete report.pdf # remove a document
quarry delete math --type collection # remove a collection
# Directory sync
quarry register ~/Documents/notes # watch a directory
quarry sync # re-index all registered directories
quarry list registrations # list registered directories
quarry deregister notes # stop watching
# System
quarry status # database dashboard
quarry version # show version
quarry list databases # list all databases
quarry doctor # health check
quarry serve # start HTTP API server
quarry serve --host 0.0.0.0 --port 8080 # bind for container deployment
quarry serve --api-key $QUARRY_API_KEY # with Bearer token auth
quarry serve --cors-origin https://punt-labs.com # allow specific origin
quarry serve --cors-origin https://a.com --cors-origin https://b.com # multiple
Named Databases
Keep separate databases for different purposes:
quarry use work # set persistent default
quarry ingest report.pdf # uses 'work' database
quarry ingest recipe.md --db personal # override per-call
quarry find "revenue" # searches 'work' database
quarry list databases # list all databases
Each database is fully isolated — its own vector index and sync registry. The default database is called default.
You can point MCP servers at different databases:
{
"mcpServers": {
"work": {
"command": "/path/to/uvx",
"args": ["--from", "punt-quarry", "quarry", "mcp", "--db", "work"]
}
}
}
Configuration
Quarry works with zero configuration. These environment variables are available for customization:
| Variable | Default | Description |
|---|---|---|
QUARRY_API_KEY |
(none) | Bearer token for quarry serve. When set, all endpoints except /health require Authorization: Bearer <key> |
OCR_BACKEND |
local |
local (offline, no setup) or textract (AWS, better for degraded scans) |
QUARRY_ROOT |
~/.quarry/data |
Base directory for all databases (log path configured separately via LOG_PATH) |
CHUNK_MAX_CHARS |
1800 |
Max characters per chunk (~450 tokens) |
CHUNK_OVERLAP_CHARS |
200 |
Overlap between consecutive chunks |
For advanced settings (Textract polling, embedding model, paths), see Advanced Configuration.
Cloud Backends (Optional)
Quarry works entirely offline by default. Cloud backends are available for specialized use cases.
AWS Textract (OCR)
Better character accuracy on degraded scans, faxes, and low-resolution images. For clean digital documents, local OCR produces equivalent search results.
export OCR_BACKEND=textract
export AWS_ACCESS_KEY_ID=...
export AWS_SECRET_ACCESS_KEY=...
export AWS_DEFAULT_REGION=us-east-1
export S3_BUCKET=my-bucket
See docs/AWS-SETUP.md for IAM policies and full setup.
SageMaker Embedding
Cloud-accelerated embedding for large-scale batch ingestion (thousands of files). Search always uses the local model regardless of this setting.
export EMBEDDING_BACKEND=sagemaker
export SAGEMAKER_ENDPOINT_NAME=quarry-embedding
Deploy with ./infra/manage-stack.sh deploy. See docs/AWS-SETUP.md for details.
MCP Tools Reference
Both Claude Desktop and Claude Code access Quarry through these MCP tools. You don't call these directly — Claude uses them on your behalf.
| Tool | What it does |
|---|---|
find |
Semantic search with optional filters |
ingest |
Index a file or URL (returns immediately, processes in background) |
remember |
Index inline text (returns immediately, processes in background) |
show |
Show document metadata or a specific page's text |
list |
List documents, collections, databases, or registrations |
delete |
Remove a document or collection (background) |
register_directory |
Register a directory for sync (background) |
deregister_directory |
Remove a directory registration (background) |
sync_all_registrations |
Re-index all registered directories (background) |
use |
Switch to a different database |
status |
Database stats |
Side-effect tools (ingest, remember, delete, register_directory, deregister_directory, sync_all_registrations) return an optimistic response immediately and process in the background. This keeps Claude responsive during long-running operations like PDF ingestion or directory sync.
Roadmap
- Ambient knowledge — passive learning and active recall via Claude Code plugin hooks (vision)
quarry sync --watchfor live filesystem monitoring- PII detection and redaction
- Google Drive connector
For product vision and positioning, see PR/FAQ.
Development
make check # run all quality gates (lint, type, test)
make test # run the test suite only
make format # auto-format code
Quarry is fully typed (py.typed) and can be used as a Python library. See DESIGN.md for architecture and design decisions, and CONTRIBUTING.md for setup and how to add new formats.
Documentation
- Design — architecture and design decisions
- Changelog
- AWS Setup Guide — IAM, S3, SageMaker deployment
- Search Quality and Tuning
- Backend Abstraction Design
- Non-Functional Design
- PR/FAQ — product vision and positioning
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file punt_quarry-1.3.3.tar.gz.
File metadata
- Download URL: punt_quarry-1.3.3.tar.gz
- Upload date:
- Size: 75.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11f7a002ac3c563ed5656711f77920869174db3fa0597962145cbaaec489881e
|
|
| MD5 |
a649f1e140e8345cdc51420237b2befb
|
|
| BLAKE2b-256 |
dcdbf656692a41d3762a66c0ee561757535888ca15af9f0aec67c1dc8d59671c
|
Provenance
The following attestation bundles were made for punt_quarry-1.3.3.tar.gz:
Publisher:
release.yml on punt-labs/quarry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
punt_quarry-1.3.3.tar.gz -
Subject digest:
11f7a002ac3c563ed5656711f77920869174db3fa0597962145cbaaec489881e - Sigstore transparency entry: 1072868796
- Sigstore integration time:
-
Permalink:
punt-labs/quarry@3ba762aa9c903bed06f51dc63e5a20fb760e90b2 -
Branch / Tag:
refs/tags/v1.3.3 - Owner: https://github.com/punt-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ba762aa9c903bed06f51dc63e5a20fb760e90b2 -
Trigger Event:
push
-
Statement type:
File details
Details for the file punt_quarry-1.3.3-py3-none-any.whl.
File metadata
- Download URL: punt_quarry-1.3.3-py3-none-any.whl
- Upload date:
- Size: 90.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f5c2dca1704e556566f408e1c6ab07282f10760a6b7a862e8f54afa4a593d2e
|
|
| MD5 |
94ad24c0bcdde64f196f007603a8973e
|
|
| BLAKE2b-256 |
310c90ecb84ec990a0debe320f6419fc087c79b2a06a03e5c837a01ec460df8b
|
Provenance
The following attestation bundles were made for punt_quarry-1.3.3-py3-none-any.whl:
Publisher:
release.yml on punt-labs/quarry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
punt_quarry-1.3.3-py3-none-any.whl -
Subject digest:
0f5c2dca1704e556566f408e1c6ab07282f10760a6b7a862e8f54afa4a593d2e - Sigstore transparency entry: 1072868840
- Sigstore integration time:
-
Permalink:
punt-labs/quarry@3ba762aa9c903bed06f51dc63e5a20fb760e90b2 -
Branch / Tag:
refs/tags/v1.3.3 - Owner: https://github.com/punt-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ba762aa9c903bed06f51dc63e5a20fb760e90b2 -
Trigger Event:
push
-
Statement type: