Metadata-Version: 2.4
Name: mcp-server-gdpr-decisions
Version: 0.1.0
Summary: MCP server for EU GDPR case law database — search decisions, recommendations and guidelines from all EU Data Protection Authorities.
Project-URL: Homepage, https://thedpo.eu
Project-URL: Documentation, https://thedpo.eu/docs/mcp
Project-URL: Repository, https://github.com/mr-franklin/mcp-gdpr-decisions
Author-email: "Mr. Franklin" <olivier@mrfranklin.be>
License-Expression: MIT
License-File: LICENSE
Keywords: case-law,data-protection,dpa,gdpr,legal,mcp,privacy
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Legal Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.11
Requires-Dist: httpx>=0.25.0
Requires-Dist: mcp>=1.0.0
Requires-Dist: pydantic-settings>=2.0.0
Requires-Dist: starlette>=0.38.0
Requires-Dist: supabase>=2.0.0
Requires-Dist: uvicorn>=0.30.0
Requires-Dist: voyageai>=0.3.0
Description-Content-Type: text/markdown

# MCP Server — GDPR Decisions

Remote MCP server providing AI-powered access to the largest EU GDPR enforcement decisions database. Search decisions, recommendations, and guidelines from all EU/EEA Data Protection Authorities, CJEU judgments, and EDPB guidelines.

Built by [Mr. Franklin](https://mrfranklin.be) for [The DPO](https://thedpo.eu).

## Features

- **Semantic search** across thousands of GDPR enforcement decisions using legal-domain embeddings (Voyage voyage-law-2)
- **Hybrid search** combining vector similarity, full-text search, and legal source hierarchy weighting
- **Reranking** with Voyage rerank-2.5 for optimal result relevance
- **GDPR article lookup** — find decisions by violated or cited GDPR article
- **Enforcement statistics** — aggregate data on fines, violations, and authority activity
- **Full decision details** including sanctions, controller data, and GDPR article references

## MCP Tools

| Tool | Description |
|------|-------------|
| `search_gdpr_decisions` | Semantic search with optional jurisdiction filter |
| `get_decision_detail` | Full decision details by ID |
| `search_by_gdpr_article` | Find decisions by GDPR article number |
| `get_gdpr_statistics` | Aggregate enforcement statistics |

## Getting Started

### 1. Get an API key

Sign up at [thedpo.eu/mcp](https://thedpo.eu/mcp) to get your API key. Free tier includes 3 advice sessions per month.

### 2. Add to Claude Desktop

Add to your Claude Desktop config (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "gdpr-decisions": {
      "command": "uvx",
      "args": ["mcp-server-gdpr-decisions"],
      "env": {
        "GDPR_API_KEY": "sk_free_your_key_here"
      }
    }
  }
}
```

### 3. Use in Claude

Ask Claude questions like:
- "What are the largest GDPR fines in 2024?"
- "Find decisions about consent for cookies"
- "Which DPA decisions cite Article 6 GDPR?"
- "Give me enforcement statistics for Belgium"

## Pricing

| Tier | Sessions/month | Price |
|------|---------------|-------|
| Free | 3 | Free |
| Pro | Unlimited | See [thedpo.eu/mcp](https://thedpo.eu/mcp) |

A session is a 15-minute window. Follow-up questions within the same session don't count as new sessions.

## License

MIT
