data-compliance-mcp 1.0.28 → 1.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/glama.json +19 -8
- package/package.json +1 -1
- package/src/server.js +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.29] - 2026-06-29
|
|
4
|
+
- feat: add GET /.well-known/glama.json ownership endpoint for Glama registry verification
|
|
5
|
+
|
|
3
6
|
## [1.0.28] - 2026-06-28
|
|
4
7
|
- fix: gate email dedup — notifyGateHit now writes dcc:gate_email:{ip} to Redis with 1-hour TTL; retries within the hour suppressed
|
|
5
8
|
- fix: 402 gate response agent_action changed to HALT_WORKFLOW; added retryable: false, retry_after_ms: null
|
package/glama.json
CHANGED
|
@@ -1,22 +1,33 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://glama.ai/mcp/servers/schema.json",
|
|
2
3
|
"name": "Data Compliance Classifier MCP",
|
|
3
4
|
"description": "Classify data safety before your agent stores or shares it. GDPR, HIPAA, PCI-DSS, CCPA. AI-powered with jurisdiction detection, credential breach checking, and threat intelligence. Free tier: 20/month.",
|
|
4
|
-
"url": "https://data-compliance-mcp-production.up.railway.app",
|
|
5
|
-
"homepage": "https://kordagencies.com",
|
|
6
5
|
"license": "UNLICENSED",
|
|
7
|
-
"categories": [
|
|
6
|
+
"categories": [
|
|
7
|
+
"legal-and-compliance",
|
|
8
|
+
"security",
|
|
9
|
+
"data-privacy"
|
|
10
|
+
],
|
|
11
|
+
"remote": {
|
|
12
|
+
"transport": "sse",
|
|
13
|
+
"url": "https://data-compliance-mcp-production.up.railway.app/sse"
|
|
14
|
+
},
|
|
8
15
|
"tools": [
|
|
9
16
|
{
|
|
10
17
|
"name": "validate_data_safety",
|
|
11
18
|
"description": "Classify a data payload before storing or transmitting. Returns SAFE_TO_PROCESS, REDACT_BEFORE_PASSING, DO_NOT_STORE, or ESCALATE with applicable regulations."
|
|
12
19
|
},
|
|
13
|
-
{
|
|
14
|
-
"name": "get_safety_report",
|
|
15
|
-
"description": "Batch classify up to 50 payloads or generate an audit-ready compliance report. Paid tier."
|
|
16
|
-
},
|
|
17
20
|
{
|
|
18
21
|
"name": "validate_data_safety_lite",
|
|
19
22
|
"description": "Pattern-only screening for high-volume payload batches -- no AI, no IP check, no jurisdiction lookup. Returns SAFE_TO_PROCESS/REVIEW_REQUIRED in under 100ms."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "get_safety_report",
|
|
26
|
+
"description": "Batch classify up to 50 payloads or generate an audit-ready compliance report. Paid tier."
|
|
20
27
|
}
|
|
21
|
-
]
|
|
28
|
+
],
|
|
29
|
+
"links": {
|
|
30
|
+
"homepage": "https://kordagencies.com",
|
|
31
|
+
"npm": "https://www.npmjs.com/package/data-compliance-mcp"
|
|
32
|
+
}
|
|
22
33
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-compliance-mcp",
|
|
3
3
|
"mcpName": "io.github.OjasKord/data-compliance-mcp",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.30",
|
|
5
5
|
"description": "Data safety classifier for AI agents. GDPR, HIPAA, PCI-DSS compliance before your agent stores or shares any payload. SAFE/ESCALATE verdict in one call.",
|
|
6
6
|
"main": "src/server.js",
|
|
7
7
|
"scripts": {
|
package/src/server.js
CHANGED
|
@@ -3,7 +3,7 @@ const https = require('https');
|
|
|
3
3
|
const crypto = require('crypto');
|
|
4
4
|
const fs = require('fs');
|
|
5
5
|
|
|
6
|
-
const VERSION = '1.0.
|
|
6
|
+
const VERSION = '1.0.29';
|
|
7
7
|
const FIRST_DEPLOYED = '2026-04-21T09:53:12Z';
|
|
8
8
|
const LIFETIME_CALLS_REDIS_KEY = 'dcc:lifetime_calls';
|
|
9
9
|
const UPTIME_HEARTBEAT_KEY = 'dcc:uptime:heartbeat_count';
|
|
@@ -1184,6 +1184,12 @@ const server = http.createServer(async (req, res) => {
|
|
|
1184
1184
|
return;
|
|
1185
1185
|
}
|
|
1186
1186
|
|
|
1187
|
+
if (req.url === '/.well-known/glama.json' && req.method === 'GET') {
|
|
1188
|
+
res.writeHead(200, { ...cors, 'Content-Type': 'application/json' });
|
|
1189
|
+
res.end(JSON.stringify({ "$schema": "https://glama.ai/mcp/schemas/connector.json", "maintainers": [{ "email": "ojas@kordagencies.com" }] }));
|
|
1190
|
+
return;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1187
1193
|
if (req.url === '/deps' && req.method === 'GET') {
|
|
1188
1194
|
const depCheck = (hostname, path, method, body, headers) => new Promise((resolve) => {
|
|
1189
1195
|
const opts = { hostname, path, method: method || 'GET', headers: Object.assign({ 'User-Agent': 'DataCompliance-MCP-HealthCheck/1.0' }, headers || {}) };
|