url-safety-validator-mcp 1.2.30 → 1.2.32
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 +16 -4
- package/package.json +1 -1
- package/src/server.js +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to URL Safety Validator MCP are documented here.
|
|
4
4
|
|
|
5
|
+
## [1.2.31] — 2026-06-29
|
|
6
|
+
- feat: add GET /.well-known/glama.json ownership endpoint for Glama registry verification
|
|
7
|
+
|
|
5
8
|
## [1.2.30] — 2026-06-28
|
|
6
9
|
- fix: gate email dedup — notifyGateHit now writes url:gate_email:{ip} to Redis with 1-hour TTL; retries within the hour suppressed
|
|
7
10
|
- fix: 402 gate response agent_action changed to HALT_WORKFLOW; added retryable: false, retry_after_ms: null
|
package/glama.json
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"$schema": "https://glama.ai/mcp/servers/schema.json",
|
|
3
|
+
"name": "URL Safety Validator MCP",
|
|
4
|
+
"description": "AI-powered URL safety validator. Returns SAFE/SUSPICIOUS/DANGEROUS verdict with trust score, threat categories, domain age, and SSL status. Cross-checks Google Web Risk and Google Safe Browsing. Call before any agent navigates or shares a URL.",
|
|
4
5
|
"license": "UNLICENSED",
|
|
5
|
-
"
|
|
6
|
-
|
|
6
|
+
"categories": [
|
|
7
|
+
"security",
|
|
8
|
+
"legal-and-compliance"
|
|
9
|
+
],
|
|
10
|
+
"remote": {
|
|
11
|
+
"transport": "sse",
|
|
12
|
+
"url": "https://url-safety-validator-mcp-production.up.railway.app/sse"
|
|
13
|
+
},
|
|
14
|
+
"links": {
|
|
15
|
+
"homepage": "https://kordagencies.com",
|
|
16
|
+
"npm": "https://www.npmjs.com/package/url-safety-validator-mcp",
|
|
17
|
+
"repository": "https://github.com/OjasKord/url-safety-validator-mcp"
|
|
18
|
+
}
|
|
7
19
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "url-safety-validator-mcp",
|
|
3
3
|
"mcpName": "io.github.OjasKord/url-safety-validator-mcp",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.32",
|
|
5
5
|
"description": "URL safety checker for AI agents. Detects phishing, malware, typosquatting before your agent visits any link. BLOCK/ALLOW verdict in one call.",
|
|
6
6
|
"main": "src/server.js",
|
|
7
7
|
"scripts": {
|
package/src/server.js
CHANGED
|
@@ -5,7 +5,7 @@ const fs = require('fs');
|
|
|
5
5
|
const crypto = require('crypto');
|
|
6
6
|
const { Readable } = require('stream');
|
|
7
7
|
|
|
8
|
-
const VERSION = '1.2.
|
|
8
|
+
const VERSION = '1.2.31';
|
|
9
9
|
const PRO_UPGRADE_URL = 'https://buy.stripe.com/5kQeVc9Ah4n3c8c0h2ebu0t';
|
|
10
10
|
const ENTERPRISE_UPGRADE_URL = 'https://buy.stripe.com/4gMdR88wddXDfko0h2ebu0u';
|
|
11
11
|
const ALLOWED_PAYMENT_LINK_IDS = ['plink_1TQzIHD6WvRe6sn3820kFk07', 'plink_1TQzJdD6WvRe6sn3GN8mQkj9'];
|
|
@@ -814,6 +814,12 @@ const server = http.createServer(async (req, res) => {
|
|
|
814
814
|
return;
|
|
815
815
|
}
|
|
816
816
|
|
|
817
|
+
if (req.url === '/.well-known/glama.json' && req.method === 'GET') {
|
|
818
|
+
res.writeHead(200, { ...cors, 'Content-Type': 'application/json' });
|
|
819
|
+
res.end(JSON.stringify({ "$schema": "https://glama.ai/mcp/schemas/connector.json", "maintainers": [{ "email": "ojas@kordagencies.com" }] }));
|
|
820
|
+
return;
|
|
821
|
+
}
|
|
822
|
+
|
|
817
823
|
if (req.url === '/trial-extension' && req.method === 'POST') {
|
|
818
824
|
let body = ''; req.on('data', c => body += c);
|
|
819
825
|
req.on('end', async () => {
|