SAOS MCP
README.md
# SAOS MCP - Polish Court Judgments
[](https://www.npmjs.com/package/@thescalablelegalmarketer/saos-mcp)
[](https://opensource.org/licenses/Apache-2.0)
[](https://modelcontextprotocol.io)
An MCP server that connects Claude (and other AI clients) to [SAOS](https://www.saos.org.pl) - the official public database of Polish court judgments (*System Orzecznictwa Sądów Powszechnych i Sądu Najwyższego*).
> **Who is this for?** Polish lawyers, legal researchers, and law students who want to search and analyze Polish court decisions directly inside Claude, Cursor, or any MCP-compatible AI client. No API key required - SAOS is a public database.
---
## Features
- **Full-text search** across hundreds of thousands of Polish judgments from courts of appeal, regional courts, and district courts
- **Filter by** case number, judge name, court type, judgment type, and date range
- **Retrieve full judgments** - metadata, operative part (*sentencja*), and complete reasoning (*uzasadnienie*)
- **Local file archive** - in stdio mode, saves each retrieved judgment as a `.md` file for offline reference
- **In-memory cache** (15 min TTL) to avoid redundant API calls
- **Timeout protection** - 15-second abort signal on all API requests
- **Dual transport** - stdio for local Claude Desktop use, HTTP for remote/hosted deployment
---
## Dla polskich prawników
SAOS MCP pozwala Claude'owi przeszukiwać bazę orzeczeń sądowych i analizować je bezpośrednio w rozmowie. Nie musisz otwierać przeglądarki ani kopiować tekstów — wystarczy zapytać Claude'a.
### Jak zacząć
**Krok 1.** Zainstaluj [Node.js](https://nodejs.org) (wersja 20 lub nowsza). To jedyna techniczna rzecz do zrobienia.
**Krok 2.** Otwórz plik konfiguracyjny Claude Desktop:
- Windows: naciśnij `Win + R`, wpisz `%APPDATA%\Claude` i otwórz plik `claude_desktop_config.json`
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
**Krok 3.** Dodaj poniższy wpis do sekcji `mcpServers` (jeśli plik jest pusty, wklej całość):
```json
{
"mcpServers": {
"SAOS": {
"command": "npx",
"args": ["-y", "@thescalablelegalmarketer/saos-mcp"]
}
}
}
```
**Krok 4.** Zapisz plik i zrestartuj Claude Desktop. Przy pierwszym uruchomieniu Claude automatycznie pobierze serwer.
### Przykładowe zapytania
```
Znajdź w SAOS 3 orzeczenia z lat 2020-2025 dotyczące sporów
o nienależyte wykonanie umowy wdrożeniowej oprogramowania.
Dla każdego podaj:
- sentencję (dosłowny cytat)
- podstawę prawną
- główny argument sądu
```
```
Wyszukaj orzeczenia dotyczące praw autorskich do oprogramowania
stworzonego przez pracownika na rzecz pracodawcy. Jakie stanowisko
zajmowały sądy w kwestii własności kodu?
```
> **Uwaga:** Orzeczenia w bazie SAOS mają zanonimizowane dane stron (zamiast nazwisk widnieje `(...)`). To cecha samej bazy danych, nie ograniczenie narzędzia.
---
## Installation
### Claude Desktop (recommended)
**Prerequisites:** [Node.js 20+](https://nodejs.org) must be installed on your machine.
Add to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"SAOS": {
"command": "npx",
"args": ["-y", "@thescalablelegalmarketer/saos-mcp"]
}
}
}
```
Restart Claude Desktop. The server starts automatically - no separate process needed.
> **Config file location:**
> - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
> - Windows: `%APPDATA%\Claude\claude_desktop_config.json`
### Remote HTTP (self-hosted)
```json
{
"mcpServers": {
"SAOS": {
"url": "https://your-domain.com/mcp"
}
}
}
```
See [Deployment](#deployment) for instructions on hosting your own instance.
### From source (development)
```bash
git clone https://github.com/pawelojdowski/saos-mcp
cd saos-mcp
npm install
npm run build
```
```json
{
"mcpServers": {
"SAOS": {
"command": "node",
"args": ["C:\\PATH\\TO\\saos-mcp\\dist\\index.js"]
}
}
}
```
**Environment variable** (stdio mode only):
- `SAOS_OUTPUT_DIR` - directory for saved `.md` judgment files (default: `~/Documents/saos-orzeczenia`)
---
## Tools
### `saos_search_judgments`
Search for judgments in the SAOS database. Results sorted by date (newest first). All parameters optional.
| Parameter | Type | Description |
|-----------|------|-------------|
| `query` | string | Full-text search across all fields (content + metadata) |
| `caseNumber` | string | Exact case number, e.g. `VIII GC 23/24` |
| `judgeName` | string | Judge's full name |
| `keyword` | string | SAOS thematic keyword, e.g. `odszkodowanie` (damages) |
| `ccCourtType` | string | `APPEAL` / `REGIONAL` / `DISTRICT` |
| `judgmentType` | string | `SENTENCE` / `DECISION` / `RESOLUTION` |
| `dateFrom` | string | Format `YYYY-MM-DD` |
| `dateTo` | string | Format `YYYY-MM-DD` |
| `pageSize` | number | Max 20, default 10 |
| `pageNumber` | number | Starting from 0 |
**Tip:** SAOS full-text search requires all keywords to appear in the text. Use multiple specific terms rather than quoted phrases, e.g. `umowa wdrożeniowa oprogramowanie nienależyte wykonanie`.
---
### `saos_get_judgment`
Retrieve a full judgment by ID. Returns metadata, verbatim operative part (*sentencja*), and full reasoning (*uzasadnienie*). In stdio mode, also saves a `.md` file to `SAOS_OUTPUT_DIR`.
| Parameter | Type | Description |
|-----------|------|-------------|
| `id` | number | **Required.** Judgment ID from `saos_search_judgments` results |
---
### `saos_list_courts`
Returns a list of common courts (ID, name, type). Use this to find court IDs for filtering.
---
## Example prompt
```
Use SAOS to find 3 judgments from 2024–2025 concerning disputes over
defective implementation of ERP software contracts.
For each judgment call saos_get_judgment and provide:
1. Operative part - quote verbatim from the [VERBATIM QUOTE] section
2. Ratio decidendi - summarize the main reason for the ruling from the
"Sąd zważył" section of the reasoning
3. Legal basis - which provisions did the court invoke
```
---
## Development
```bash
npm run dev # stdio server (TypeScript, no build needed)
npm run dev:http # HTTP server on port 3000
npm run build # type-check + esbuild bundle → dist/
npm run start # run compiled stdio bundle
npm run start:http # run compiled HTTP server
```
## Deployment
Build and run with Docker:
```bash
docker build -t saos-mcp .
docker run -p 3000:3000 saos-mcp
```
MCP endpoint: `http://localhost:3000/mcp`
Health check: `http://localhost:3000/health`
Deploy to Railway, Render, or Fly.io using the included `Dockerfile`.
---
## Project structure
```
saos-mcp/
├── src/
│ ├── types.ts ← SAOS API TypeScript interfaces
│ ├── api.ts ← SAOS API client + in-memory cache
│ ├── format.ts ← HTML parsing, text formatting, file saving
│ ├── server.ts ← createMcpServer() factory - tool registration
│ ├── index.ts ← stdio entry point
│ └── http-server.ts ← HTTP entry point + /health endpoint
├── dist/ ← build output (gitignored)
│ ├── index.js ← stdio bundle (with #!/usr/bin/env node shebang)
│ └── http-server.js ← HTTP bundle
├── build.mjs ← esbuild config (two outputs in parallel)
├── tsconfig.json ← type-check only (noEmit), bundling via esbuild
├── server.json ← MCP marketplace manifest
├── Dockerfile ← multi-stage build → image with http-server.js
├── icon.svg
└── package.json
```
---
## Known limitations
- **Partial coverage** - SAOS indexes mainly courts of appeal and regional courts; district courts are less complete
- **Anonymized parties** - the API returns `(...)` instead of party names; this is a feature of the SAOS database
- **`decision` field** - available mainly for Supreme Court judgments; for common courts the operative part is extracted via HTML parsing
- **In-memory cache** - 15 min TTL, resets on process restart
- **HTTP mode** - does not save `.md` files (no access to the user's file system)
---
## About SAOS
SAOS (*System Analizy Orzeczeń Sądowych* - System of Analysis of Court Judgments) is an open academic project led by the Interdisciplinary Centre for Mathematical and Computational Modelling (ICM) at the University of Warsaw, funded by the National Centre for Research and Development (grant IS-1/040/NCBR/2014).
The platform aggregates judgments from Polish common courts, administrative courts, the Supreme Court (*Sąd Najwyższy*), the Constitutional Tribunal (*Trybunał Konstytucyjny*), and the National Appeals Chamber (*KIO*). Data is imported automatically from official court portals. Personal data appearing in judgments is processed under GDPR Art. 6(1)(e) (public interest); responsibility for its publication rests with the source court systems.
The API is freely accessible with no authentication required.
**Disclaimer:** This tool is intended for legal research only and is not a substitute for professional legal advice. Always verify citations against primary sources before relying on them in legal proceedings.
---
## License
Apache-2.0 © [Paweł Ojdowski](https://afterlegal.pl/)
TDQS
A4.4/5.0
Scored across 3 tools
Disambiguation5/5
Each tool has a clearly distinct purpose: searching judgments, fetching a specific judgment by ID, and listing courts. There is no overlap or ambiguity between them.
Naming Consistency5/5
All tool names follow a consistent pattern: saos_ + verb + noun (search_judgments, get_judgment, list_courts). This makes the API predictable and easy to navigate.
Tool Count5/5
With only 3 tools, the server is tightly scoped to its purpose of accessing court judgments. This is an appropriate size for a focused legal database, avoiding unnecessary complexity.
Completeness5/5
The tool set covers the complete workflow: find courts for filtering, search for judgments with rich query options, and retrieve full details for a specific judgment. There are no obvious gaps for typical use cases.
Maintenance
ActivityStale
ResponsivenessSyncing