legal-rag-toolkit

legal-rag-toolkit

Enables semantic search over Turkish legal contracts and emails via an MCP server integrated with Claude Desktop and Claude Code, providing tools for document ingestion, hybrid vector search, and full-text retrieval.

Category
Visit Server

README

Legal RAG Toolkit

Semantic search over Turkish legal contracts and emails, powered by an MCP server that plugs directly into Claude Desktop and Claude Code.

Instead of building a separate web UI, Claude is the interface — the toolkit provides the retrieval backend as MCP tools and Claude Code skills.

What it does

  • Ingest PDF, DOCX, and .eml files — parse, chunk, embed, and store in a local vector database
  • Search contracts and emails with hybrid dense+sparse retrieval (Turkish and English queries)
  • Retrieve full documents by filename for deep reading
  • Skills for Claude Code: /search-contract, /analyze-clause, /draft-response, /ingest-docs, /ingest-emails

Architecture

Claude Desktop / Claude Code
        |
        | MCP (stdio)
        |
[Legal RAG MCP Server] ── Python, FastMCP
  |
  |── search_contracts     hybrid vector search over contracts
  |── search_emails        hybrid vector search over emails
  |── get_document         retrieve all chunks for a file
  |── ingest_docs          parse + embed PDF/DOCX documents
  |── ingest_email         parse + embed .eml files
  |── list_sources         show indexed files and stats
  |
  |── LanceDB              embedded vector DB (file-based, zero-server)
  |── BAAI/bge-m3          multilingual embeddings (1024d, 8K context)
  |── PyMuPDF + pdfplumber PDF parsing
  |── python-docx          DOCX parsing
  |── imap_tools           email parsing

Setup

# Clone
git clone https://github.com/avocatt/legal-rag-toolkit.git
cd legal-rag-toolkit

# Create venv and install
python3.11 -m venv .venv
source .venv/bin/activate
pip install -e .

# Store HuggingFace token in macOS Keychain (for BGE-M3 model download)
security add-generic-password -a $USER -s HF_TOKEN -w "hf_your_token_here"

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "legal-rag-toolkit": {
      "command": "/path/to/legal-rag-toolkit/.venv/bin/python",
      "args": ["/path/to/legal-rag-toolkit/src/server/mcp_server.py"]
    }
  }
}

Restart Claude Desktop. The tools will appear under the hammer icon.

Claude Code

# Add as MCP server
claude mcp add legal-rag-toolkit -- /path/to/legal-rag-toolkit/.venv/bin/python /path/to/legal-rag-toolkit/src/server/mcp_server.py

Usage

Once connected, ask Claude naturally:

  • "Index the contracts in ~/Documents/contracts"
  • "Search for termination clauses in lease agreements"
  • "Kira sozlesmelerinde tahliye sartlarini ara"
  • "Show me all indexed documents"
  • "Pull up the full text of kira_sozlesmesi_048.pdf"

Stack

Component Choice Why
MCP Server Python + FastMCP Single language, mature SDK
Embeddings BAAI/bge-m3 8K context, hybrid retrieval, MIT, Turkish via XLM-RoBERTa
Vector DB LanceDB Embedded, file-based, hybrid search, zero infrastructure
PDF Parsing PyMuPDF + pdfplumber Fast, lightweight, good table extraction
DOCX Parsing python-docx Structural parsing with style detection
Email Parsing imap_tools Turkish charset support (ISO-8859-9)

Roadmap

  • [ ] KVKK (Turkish GDPR) PII masking before indexing
  • [ ] Structure-aware chunking using heading styles and font sizes
  • [ ] Cross-encoder reranking with BAAI/bge-reranker-v2-m3
  • [ ] Docling integration for OCR and complex PDF layouts
  • [ ] Local LLM support via OpenAI-compatible API

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured