package.json•1.49 kB
{
"name": "@cenemiljezweb/dns-mcp-server",
"version": "1.0.0",
"description": "MCP server for DNS lookups and network diagnostics",
"main": "dist/index.js",
"bin": {
"mcp-dns-server": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"postinstall": "echo 'Add to Claude Desktop config: npx @cenemiljezweb/dns-mcp-server'"
},
"keywords": ["mcp", "dns", "lookup", "network", "model-context-protocol", "claude", "ai"],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cenemil/dns-mcp-server.git"
},
"bugs": {
"url": "https://github.com/cenemil/dns-mcp-server/issues"
},
"homepage": "https://github.com/cenemil/dns-mcp-server#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"dns-packet": "^5.6.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/dns-packet": "^5.6.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}