eu.ansvar/greek-law-mcp
Greek legislation via MCP — full-text search across statutes and provisions
★ 0NOASSERTIONsearch
Install
Config snippet generator goes here (5 client tabs)
README
# Greek Law MCP Server
**The Εθνικό Τυπογραφείο (Government Gazette) alternative for the AI age.**
[](https://www.npmjs.com/package/@ansvar/greek-law-mcp)
[](https://registry.modelcontextprotocol.io)
[](https://opensource.org/licenses/Apache-2.0)
[](https://github.com/Ansvar-Systems/Greek-law-mcp)
[](https://github.com/Ansvar-Systems/Greek-law-mcp/actions/workflows/ci.yml)
[](https://github.com/Ansvar-Systems/Greek-law-mcp/actions/workflows/check-updates.yml)
[](docs/EU_INTEGRATION_GUIDE.md)
[](docs/EU_INTEGRATION_GUIDE.md)
Query **21,119 Greek statutes** -- from the Νόμος 4624/2019 (GDPR implementation) and Ποινικός Κώδικας to the Αστικός Κώδικας, κώδικας εταιριών, and more -- directly from Claude, Cursor, or any MCP-compatible client.
If you're building legal tech, compliance tools, or doing Greek legal research, this is your verified reference database.
Built by [Ansvar Systems](https://ansvar.eu) -- Stockholm, Sweden
---
## Why This Exists
Greek legal research is scattered across e-nomothesia.gr, the Εθνικό Τυπογραφείο (National Printing Office), and EUR-Lex. Whether you're:
- A **lawyer** validating citations in a brief or contract
- A **compliance officer** checking if a statute is still in force
- A **legal tech developer** building tools on Greek law
- A **researcher** tracing legislative provisions across 21,119 statutes
...you shouldn't need dozens of browser tabs and manual cross-referencing. Ask Claude. Get the exact provision. With context.
This MCP server makes Greek law **searchable, cross-referenceable, and AI-readable**.
---
## Quick Start
### Use Remotely (No Install Needed)
> Connect directly to the hosted version -- zero dependencies, nothing to install.
**Endpoint:** `https://greek-law-mcp.vercel.app/mcp`
| Client | How to Connect |
|--------|---------------|
| **Claude.ai** | Settings > Connectors > Add Integration > paste URL |
| **Claude Code** | `claude mcp add greek-law --transport http https://greek-law-mcp.vercel.app/mcp` |
| **Claude Desktop** | Add to config (see below) |
| **GitHub Copilot** | Add to VS Code settings (see below) |
**Claude Desktop** -- add to `claude_desktop_config.json`:
```json
{
"mcpServers": {
"greek-law": {
"type": "url",
"url": "https://greek-law-mcp.vercel.app/mcp"
}
}
}
```
**GitHub Copilot** -- add to VS Code `settings.json`:
```json
{
"github.copilot.chat.mcp.servers": {
"greek-law": {
"type": "http",
"url": "https://greek-law-mcp.vercel.app/mcp"
}
}
}
```
### Use Locally (npm)
```bash
npx @ansvar/greek-law-mcp
```
**Claude Desktop** -- add to `claude_desktop_config.json`:
**macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
**Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
```json
{
"mcpServers": {
"greek-law": {
"command": "npx",
"args": ["-y", "@ansvar/greek-law-mcp"]
}
}
}
```
**Cursor / VS Code:**
```json
{
"mcp.servers": {
"greek-law": {
"command": "npx",
"args": ["-y", "@ansvar/greek-law-mcp"]
}
}
}
```
---
## Example Queries
Once connected, just ask naturally:
- *"Αναζήτηση 'προστασία προσωπικών δεδομένων' -- ποιες υποχρεώσεις θεσπίζει ο Ν. 4624/2019;"*
- *"Ισχύει ακόμα ο Ποινικός Κώδικας (Ν. 4619/2019) ως προς το άρθρο 292;"*
- *"Βρες διατάξεις για την εταιρική διακυβέρνηση στον Αστικό Κώδικα"*
- *"Ποιες ευρωπαϊκές οδηγίες ενσωμάτωσε ο νόμος για την κυβερνοασφάλεια;"*
- *"Ποιοι ελληνικοί νόμοι υλοποιούν τον ΓΚΠΔ;"*
- *"Επαλήθευσε παραπομπή: Ν. 4624/2019, άρθ. 5"*
- *"Δημιούργησε νομική θέση για τις υποχρεώσεις γνωστοποίησης παραβίασης δεδομένων"*
- *"Συμμορφώνεται η ελληνική νομοθεσία με τις απαιτήσεις της οδηγίας NIS2;"*
---
## What's Included
| Category | Count | Details |
|----------|-------|---------|
| **Statutes** | 21,119 statutes | Comprehensive Greek legislation from search.et.gr |
| **Provisions** | 7,793 sections | Full-text searchable with FTS5 |
| **EU Cross-References** | Included | Directives and regulations linked to Greek transpositions |
| **Database Size** | 68 MB | Optimized SQLite, portable |
| **Daily Updates** | Automated | Freshness checks against e-nomothesia.gr / et.gr |
**Verified data only** -- every citation is validated against official sources (Εθνικό Τυπογραφείο, e-nomothesia.gr). Zero LLM-generated content.
---
## See It In Acti