Model Context Protocol server for LGPD compliance AI agents — provides standardized tools for querying on-chain compliance status, generating privacy documentation, and registering documents on IPFS.
This repository contains the MCP server configuration, AI agent skills, and integration documentation for the DPO2U compliance protocol. It enables any AI agent (Claude, ChatGPT, or custom frameworks) to interact with the Midnight blockchain and DPO2U infrastructure via standardized tool calls.
| Skill | Description | Based On |
|---|---|---|
code-explorer |
Codebase exploration and analysis | Claude Code Explore agent |
task-planner |
Complex implementation planning | Claude Code Plan agent |
shell-executor |
Safe command execution | Claude Code Bash tool |
web-researcher |
Web information retrieval | Claude Code WebSearch/WebFetch |
task-manager |
Task list management | Claude Code task tracking |
github-assistant |
GitHub operations via gh CLI |
Claude Code GitHub integration |
code-reviewer |
Code review and analysis | Claude Code review capabilities |
| Skill | Description | Methodologies |
|---|---|---|
brainstorming |
Creative idea generation | SCAMPER, Six Hats, Mind Map, HMW |
decision-maker |
Structured decision support | RICE, Decision Matrix, Pre-mortem, 10/10/10 |
problem-solver |
Root cause analysis | 5 Whys, RCA, PDCA, Fishbone |
project-kickoff |
Project initialization | Templates, RACI, ADRs |
dpo2u-mcp-ai/
├── skills/ # Ready-to-use agent skills
│ ├── code-explorer/
│ ├── task-planner/
│ ├── shell-executor/
│ ├── web-researcher/
│ ├── task-manager/
│ ├── github-assistant/
│ ├── code-reviewer/
│ ├── brainstorming/
│ ├── decision-maker/
│ ├── problem-solver/
│ └── project-kickoff/
├── config/ # Configuration examples
└── ESTUDO-INTEGRACAO-*.md # Integration study
# Copy all skills
cp -r skills/* ~/clawd/skills/
# Or copy a specific skill
cp -r skills/code-explorer ~/clawd/skills/Skills are invoked automatically based on context or manually:
Explore this project and give me an architecture overview
Plan the implementation of an authentication system
Run git status and show the repository state
Recommended model for best performance:
{
"agent": {
"model": "anthropic/claude-opus-4-5"
}
}MIT