Metadata-Version: 2.4
Name: dora-compliance-mcp
Version: 1.2.5
Summary: DORA (EU Digital Operational Resilience Act) compliance for AI agents. 5-pillar audit, incident classification, Article 28 Register of Information, TLPT readiness. Regulation (EU) 2022/2554. By MEOK AI Labs.
Project-URL: Homepage, https://meok.ai/dora-compliance-mcp
Project-URL: Repository, https://github.com/meok-ai-labs/dora-compliance-mcp
Project-URL: Documentation, https://meok.ai/docs/dora
Author-email: MEOK AI Labs <hello@meok.ai>
License: MIT License
        
        Copyright (c) 2026 MEOK AI Labs (Nicholas Templeman)
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: banking-compliance,digital-operational-resilience-act,dora,eu-dora,eu-regulation,financial-compliance,fintech-compliance,ict-risk,mcp,meok-ai-labs,regulation
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Requires-Dist: mcp>=1.0.0
Description-Content-Type: text/markdown

<div align="center">

# Dora Compliance MCP

**MCP server for dora compliance mcp operations**

[![PyPI](https://img.shields.io/pypi/v/meok-dora-compliance-mcp)](https://pypi.org/project/meok-dora-compliance-mcp/)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
[![MEOK AI Labs](https://img.shields.io/badge/MEOK_AI_Labs-MCP_Server-purple)](https://meok.ai)

</div>


## Quick Install

| Client | Install |
|--------|---------|
| **Claude Desktop** | [![Install in Claude](https://img.shields.io/badge/Install-Claude-blue)](https://claude.ai) |
| **Cursor** | [![Install in Cursor](https://img.shields.io/badge/Install-Cursor-black)](https://cursor.com) |
| **VS Code** | [![Install in VS Code](https://img.shields.io/badge/Install-VS_Code-blue)](https://code.visualstudio.com) |
| **Windsurf** | [![Install in Windsurf](https://img.shields.io/badge/Install-Windsurf-purple)](https://codeium.com/windsurf) |
| **Docker** | `docker run -p 8000:8000 dora-compliance-mcp` |
| **pip** | `pip install dora-compliance-mcp` |

## Overview

Dora Compliance MCP provides AI-powered tools via the Model Context Protocol (MCP).

## Tools

| Tool | Description |
|------|-------------|
| `classify_entity` | Classify a financial entity's DORA applicability + which entity type it is. |
| `list_pillars` | List all 5 DORA pillars with article ranges and key obligations. |
| `audit_pillar` | Audit a specific DORA pillar (1-5) against your entity's current controls. |
| `audit_all_pillars` | Run audits across all 5 DORA pillars and return an executive summary. |
| `classify_incident` | Classify an ICT incident against DORA major-incident thresholds per Commission D |
| `register_of_information_template` | Return the Article 28.3 Register of Information template structure. Financial en |
| `tlpt_readiness` | Assess Threat-Led Penetration Testing (Article 26) readiness. Returns whether th |
| `get_dora_certificate` | Generate a cryptographically signed DORA compliance attestation (Pro/Enterprise) |
| `enforcement_status` | Current DORA enforcement status + key upcoming deadlines for financial entities. |

## Installation

```bash
pip install meok-dora-compliance-mcp
```

## Usage with Claude Desktop

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

```json
{
  "mcpServers": {
    "dora-compliance-mcp": {
      "command": "python",
      "args": ["-m", "meok_dora_compliance_mcp.server"]
    }
  }
}
```

## Usage with FastMCP

```python
from mcp.server.fastmcp import FastMCP

# This server exposes 9 tool(s) via MCP
# See server.py for full implementation
```

## License

MIT © [MEOK AI Labs](https://meok.ai)
