dnstwister-mcp 1.0.0
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/README.md +21 -0
- package/dist/api.js +41 -0
- package/dist/index.js +4 -0
- package/dist/server.js +38 -0
- package/package.json +44 -0
- package/server.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Dnstwister MCP
|
|
2
|
+
|
|
3
|
+
DNS twister domain threat intelligence: fuzz domains for typosquatting, check whois. No key required.
|
|
4
|
+
|
|
5
|
+
This file is self contained. It reads public data only and never writes to the machine. All output is bounded and honest about what could not be fetched.
|
|
6
|
+
|
|
7
|
+
## Tools
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
* `fuzz` Fuzz a domain for lookalike domains.
|
|
11
|
+
* `whois` Get whois data for a domain.
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install
|
|
17
|
+
npm run build
|
|
18
|
+
node dist/index.js
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Data comes from the public Dnstwister API.
|
package/dist/api.js
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
const UA = 'mrfentmen-dnstwister-mcp/1.0';
|
|
2
|
+
const BASE = 'https://dnstwister.report/api';
|
|
3
|
+
function hexEncode(s) {
|
|
4
|
+
let out = '';
|
|
5
|
+
for (const c of s)
|
|
6
|
+
out += c.charCodeAt(0).toString(16).padStart(2, '0');
|
|
7
|
+
return out;
|
|
8
|
+
}
|
|
9
|
+
export async function fuzz(args) {
|
|
10
|
+
const domain = String(args.domain).trim().toLowerCase();
|
|
11
|
+
if (!domain)
|
|
12
|
+
throw new Error('Provide a domain.');
|
|
13
|
+
const res = await fetch(`${BASE}/fuzz/${hexEncode(domain)}`, {
|
|
14
|
+
headers: { 'User-Agent': UA, Accept: 'application/json' },
|
|
15
|
+
signal: AbortSignal.timeout(25000),
|
|
16
|
+
});
|
|
17
|
+
if (!res.ok)
|
|
18
|
+
throw new Error(`DNS Twister returned ${res.status}`);
|
|
19
|
+
const d = (await res.json());
|
|
20
|
+
const fuzzies = d.fuzzy_domains ?? [];
|
|
21
|
+
if (!fuzzies.length)
|
|
22
|
+
return `No fuzzy domains for ${domain}.`;
|
|
23
|
+
const flagged = fuzzies.filter((f) => f.has_mx_url || f.resolve_ip_url);
|
|
24
|
+
return `Lookalike domains for ${domain} (${fuzzies.length} total, ${flagged.length} with DNS records):\n` +
|
|
25
|
+
fuzzies.slice(0, 20).map((f) => `* ${f.domain ?? '?'} ${f.has_mx_url || f.resolve_ip_url ? '- has DNS records' : '- no DNS'}`).join('\n');
|
|
26
|
+
}
|
|
27
|
+
export async function whois(args) {
|
|
28
|
+
const domain = String(args.domain).trim().toLowerCase();
|
|
29
|
+
if (!domain)
|
|
30
|
+
throw new Error('Provide a domain.');
|
|
31
|
+
const res = await fetch(`${BASE}/whois/${hexEncode(domain)}`, {
|
|
32
|
+
headers: { 'User-Agent': UA, Accept: 'application/json' },
|
|
33
|
+
signal: AbortSignal.timeout(25000),
|
|
34
|
+
});
|
|
35
|
+
if (!res.ok)
|
|
36
|
+
throw new Error(`DNS Twister returned ${res.status}`);
|
|
37
|
+
const d = (await res.json());
|
|
38
|
+
if (d.domain == null)
|
|
39
|
+
throw new Error('No whois returned.');
|
|
40
|
+
return `Whois for ${d.domain ?? domain} (retrieved ${d.retrieved ?? '?'}):\n${(d.response ?? 'No whois data').slice(0, 800)}`;
|
|
41
|
+
}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
2
|
+
import { createServer } from "./server.js";
|
|
3
|
+
const main = async () => { const server = createServer(); await server.connect(new StdioServerTransport()); };
|
|
4
|
+
main().catch((error) => { console.error("Fatal error:", error); process.exit(1); });
|
package/dist/server.js
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
import { fuzz } from "./api.js";
|
|
4
|
+
import { whois } from "./api.js";
|
|
5
|
+
const text = (value) => ({ content: [{ type: "text", text: value }] });
|
|
6
|
+
const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
|
|
7
|
+
const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
|
|
8
|
+
const error = (e) => `Error: ${e instanceof Error ? e.message : String(e)}`;
|
|
9
|
+
export function createServer() {
|
|
10
|
+
const server = new McpServer({ name: "dnstwister-mcp", version: "1.0.0" });
|
|
11
|
+
server.registerTool("fuzz", {
|
|
12
|
+
title: "Fuzz",
|
|
13
|
+
description: "Fuzz a domain for lookalike domains.",
|
|
14
|
+
inputSchema: z.object({ domain: z.string().describe("Domain to fuzz.") }),
|
|
15
|
+
annotations: READ_ONLY,
|
|
16
|
+
}, async (args) => {
|
|
17
|
+
try {
|
|
18
|
+
return text(await fuzz(args));
|
|
19
|
+
}
|
|
20
|
+
catch (e) {
|
|
21
|
+
return textError(error(e));
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
server.registerTool("whois", {
|
|
25
|
+
title: "Whois",
|
|
26
|
+
description: "Get whois data for a domain.",
|
|
27
|
+
inputSchema: z.object({ domain: z.string().describe("Domain.") }),
|
|
28
|
+
annotations: READ_ONLY,
|
|
29
|
+
}, async (args) => {
|
|
30
|
+
try {
|
|
31
|
+
return text(await whois(args));
|
|
32
|
+
}
|
|
33
|
+
catch (e) {
|
|
34
|
+
return textError(error(e));
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
return server;
|
|
38
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/mrfentmen/dnstwister-mcp.git"
|
|
7
|
+
},
|
|
8
|
+
"bin": {
|
|
9
|
+
"dnstwister-mcp": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"server.json",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc -p tsconfig.json",
|
|
19
|
+
"start": "node dist/index.js",
|
|
20
|
+
"dev": "npm run build && node dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
25
|
+
"zod": "^3.23.8"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "^22.0.0",
|
|
29
|
+
"typescript": "^5.6.0"
|
|
30
|
+
},
|
|
31
|
+
"name": "dnstwister-mcp",
|
|
32
|
+
"description": "DNS twister domain threat intelligence: fuzz domains for typosquatting, check whois.",
|
|
33
|
+
"keywords": [
|
|
34
|
+
"mcp",
|
|
35
|
+
"dnstwister",
|
|
36
|
+
"dns",
|
|
37
|
+
"typosquatting",
|
|
38
|
+
"domain"
|
|
39
|
+
],
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=20"
|
|
42
|
+
},
|
|
43
|
+
"mcpName": "io.github.mrfentmen/dnstwister-mcp"
|
|
44
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.mrfentmen/dnstwister-mcp",
|
|
4
|
+
"description": "DNS twister domain threat intelligence: fuzz domains for typosquatting, check whois.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/mrfentmen/dnstwister-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "dnstwister-mcp",
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|