PaperCortex adds semantic search, auto-classification, receipt extraction, bank statement matching, and DATEV export to Paperless-ngx — powered entirely by local AI through Ollama. Exposes everything as an MCP Server for Claude Code and AI agent integration. - MCP Server with 5 tools (search, classify, receipt, query, export) - Local Ollama embeddings for semantic document search - Receipt data extraction (vendor, amount, date, tax, line items) - DATEV Buchungsstapel CSV export for German accounting - Bank CSV transaction matching - Paperless-ngx REST API client - Docker deployment - Zero cloud dependencies — 100% self-hosted
21 lines
417 B
Plaintext
21 lines
417 B
Plaintext
# PaperCortex Configuration
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# Paperless-ngx connection
|
|
PAPERLESS_URL=http://localhost:8000
|
|
PAPERLESS_TOKEN=your-paperless-api-token-here
|
|
|
|
# Ollama connection
|
|
OLLAMA_URL=http://localhost:11434
|
|
OLLAMA_MODEL=qwen2.5:14b
|
|
OLLAMA_EMBEDDING_MODEL=nomic-embed-text
|
|
|
|
# Vector store
|
|
VECTOR_DB_PATH=./data/vectors.db
|
|
|
|
# MCP Server
|
|
MCP_SERVER_PORT=3100
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|