dns-lookup-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 ADDED
@@ -0,0 +1,21 @@
1
+ # DNS Lookup MCP
2
+
3
+ Look up DNS records for any domain through Google DNS over HTTPS. 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
+ * `lookup` Look up a record type.
11
+ * `lookup_all` Look up common record types.
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ npm install
17
+ npm run build
18
+ node dist/index.js
19
+ ```
20
+
21
+ Resolutions come from the public Google DNS over HTTPS resolver.
package/dist/api.js ADDED
@@ -0,0 +1,51 @@
1
+ const BASE = "https://dns.google/resolve";
2
+ const UA = "mrfentmen-dns-lookup-mcp/1.0 (https://github.com/mrfentmen)";
3
+ export class DnsError extends Error {
4
+ }
5
+ async function get(url) {
6
+ const res = await fetch(url, { headers: { "User-Agent": UA, Accept: "application/json" }, signal: AbortSignal.timeout(20000) });
7
+ if (res.status === 429)
8
+ throw new DnsError("DNS resolver rate limit hit, wait and retry");
9
+ if (!res.ok)
10
+ throw new DnsError(`DNS resolver error ${res.status}`);
11
+ return (await res.json());
12
+ }
13
+ function fmtAnswer(d, type) {
14
+ const ans = d?.Answer ?? [];
15
+ if (d?.Status === 3)
16
+ return "Domain does not exist (NXDOMAIN)";
17
+ if (!ans.length)
18
+ return `No ${type} records found`;
19
+ return ans
20
+ .map((a) => {
21
+ const v = a?.data ?? "";
22
+ const ttl = a?.TTL ?? "?";
23
+ return ` ${v} (ttl ${ttl})`;
24
+ })
25
+ .join("\n");
26
+ }
27
+ export async function lookup(args) {
28
+ const domain = (args.domain ?? "").trim().toLowerCase();
29
+ if (!domain)
30
+ throw new DnsError("Provide a domain name");
31
+ const type = (args.type ?? "A").trim().toUpperCase();
32
+ const d = await get(`${BASE}?name=${encodeURIComponent(domain)}&type=${type}`);
33
+ return `${domain} ${type} records:\n${fmtAnswer(d, type)}`;
34
+ }
35
+ export async function lookupAll(args) {
36
+ const domain = (args.domain ?? "").trim().toLowerCase();
37
+ if (!domain)
38
+ throw new DnsError("Provide a domain name");
39
+ const types = ["A", "AAAA", "MX", "NS", "TXT", "CNAME"];
40
+ const out = [];
41
+ for (const t of types) {
42
+ try {
43
+ const d = await get(`${BASE}?name=${encodeURIComponent(domain)}&type=${t}`);
44
+ out.push(`${t}:\n${fmtAnswer(d, t)}`);
45
+ }
46
+ catch (e) {
47
+ out.push(`${t}: ${e instanceof Error ? e.message : String(e)}`);
48
+ }
49
+ }
50
+ return out.join("\n\n");
51
+ }
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 { lookup } from "./api.js";
4
+ import { lookupAll } 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: "dns-lookup-mcp", version: "1.0.0" });
11
+ server.registerTool("lookup", {
12
+ title: "Lookup",
13
+ description: "Look up DNS records for a domain.",
14
+ inputSchema: z.object({ domain: z.string().describe("Domain name."), type: z.string().describe("Record type like A or MX.").optional() }),
15
+ annotations: READ_ONLY,
16
+ }, async (args) => {
17
+ try {
18
+ return text(await lookup(args));
19
+ }
20
+ catch (e) {
21
+ return textError(error(e));
22
+ }
23
+ });
24
+ server.registerTool("lookup_all", {
25
+ title: "Lookup all",
26
+ description: "Look up common DNS record types for a domain.",
27
+ inputSchema: z.object({ domain: z.string().describe("Domain name.") }),
28
+ annotations: READ_ONLY,
29
+ }, async (args) => {
30
+ try {
31
+ return text(await lookupAll(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/dns-lookup-mcp.git"
7
+ },
8
+ "bin": {
9
+ "dns-lookup-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": "dns-lookup-mcp",
32
+ "description": "Look up DNS records for any domain using Google DNS over HTTPS. No key required.",
33
+ "mcpName": "io.github.mrfentmen/dns-lookup-mcp",
34
+ "keywords": [
35
+ "mcp",
36
+ "dns",
37
+ "lookup",
38
+ "domain",
39
+ "network"
40
+ ],
41
+ "engines": {
42
+ "node": ">=20"
43
+ }
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/dns-lookup-mcp",
4
+ "description": "Look up DNS records for any domain using Google DNS over HTTPS. No key required.",
5
+ "repository": {
6
+ "url": "https://github.com/mrfentmen/dns-lookup-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.0",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "dns-lookup-mcp",
14
+ "version": "1.0.0",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
20
+ }