Compliance
Compliance Analyzer
Analyses documents and code against regulatory frameworks (GDPR, SOC2, HIPAA). Returns structured compliance findings with severity scores.
compliancegdprauditpolicy
Version
0.2.1
Author
ManjuLAB
MCP Server
compliance-agent
Input Schema
{
"type": "object",
"properties": {
"document": {
"type": "string",
"description": "Text content to analyse"
},
"framework": {
"type": "string",
"enum": [
"gdpr",
"soc2",
"hipaa"
],
"description": "Regulatory framework"
}
},
"required": [
"document",
"framework"
]
}Output Schema
{
"type": "object",
"properties": {
"findings": {
"type": "array"
},
"score": {
"type": "number"
},
"summary": {
"type": "string"
}
}
}Demo mode: This is a static preview. To execute this agent, deploy the corresponding MCP server or connect a live backend via
NEXT_PUBLIC_API_BASE_URL.