MCP Hub
Back to servers

Technitium MCP Secure

A security-hardened MCP server for managing Technitium DNS Server via its HTTP API. It provides 20 tools for DNS zone management, record configuration, and server diagnostics with built-in protections like rate limiting and read-only modes.

Updated
Feb 12, 2026

technitium-mcp-secure

A security-hardened Model Context Protocol (MCP) server for managing Technitium DNS Server via its HTTP API.

Built for use with Claude Code and other MCP-compatible clients.

Features

  • 20 tools covering DNS zones, records, blocking, cache, settings, logs, and diagnostics
  • Input validation on all parameters (RFC 1035 domain checks, IP validation, enum allowlists)
  • HTTPS enforcement with explicit HTTP opt-in for local networks
  • Read-only mode to expose only safe query tools
  • Confirmation required for destructive operations (delete zone, delete record, flush cache)
  • Rate limiting with stricter limits on destructive operations
  • Audit logging as structured JSONL to stderr
  • Response sanitization to strip tokens, passwords, stack traces, and sensitive paths
  • Error sanitization to prevent credential/path leakage in error messages
  • Token file support for secure credential storage
  • Auth mutex to prevent concurrent authentication races
  • POST-only API calls to keep tokens out of query strings and server logs

Quick Start

# Clone and build
git clone https://github.com/rosschurchill/technitium-mcp-secure.git
cd technitium-mcp-secure
npm install
npm run build

# Register with Claude Code (see "Generating an API Token" below first)
claude mcp add technitium-dns \
  --env TECHNITIUM_URL=https://your-server-ip:5380 \
  --env TECHNITIUM_TOKEN=your-api-token \
  -- node /path/to/technitium-mcp-secure/dist/index.js

Configuration

All configuration is via environment variables:

VariableRequiredDescription
TECHNITIUM_URLYesServer URL (e.g. https://192.168.1.100:5380)
TECHNITIUM_TOKENOne of token/passwordAPI token (preferred)
TECHNITIUM_TOKEN_FILEOne of token/passwordPath to file containing token (must be mode 0600)
TECHNITIUM_PASSWORDOne of token/passwordAdmin password (token is preferred)
TECHNITIUM_USERNoUsername (default: admin)
TECHNITIUM_READONLYNoSet true to hide all write tools
TECHNITIUM_ALLOW_HTTPNoSet true to allow insecure HTTP connections

Authentication priority: TECHNITIUM_TOKEN > TECHNITIUM_TOKEN_FILE > TECHNITIUM_PASSWORD

Sensitive environment variables are cleared from process.env after being read.

Tools

Read-only (12 tools)

ToolDescription
dns_health_checkServer version, uptime, forwarder config, failure rate
dns_get_statsQuery statistics with top clients/domains/blocked
dns_resolveTest DNS resolution via the server
dns_list_zonesList all configured zones
dns_zone_optionsZone DNSSEC, transfer, and notify settings
dns_list_recordsList records in a zone
dns_list_blockedList blocked domains
dns_list_allowedList allowed (whitelisted) domains
dns_list_cacheList cached zones
dns_get_settingsFull server settings
dns_query_logsQuery DNS logs with filters
dns_list_appsList installed DNS apps

Write (8 tools)

ToolDescription
dns_create_zoneCreate a new DNS zone
dns_delete_zoneDelete a zone (requires confirm: true)
dns_add_recordAdd a DNS record
dns_update_recordUpdate an existing record
dns_delete_recordDelete a record (requires confirm: true)
dns_block_domainBlock a domain
dns_allow_domainAllow a domain (bypass block lists)
dns_flush_cacheFlush DNS cache (requires confirm: true)

Security

Generating an API Token

An API token is the recommended way to authenticate. Tokens avoid sending your admin password on every request and can be revoked independently.

Option A: Web Admin UI

  1. Open the Technitium web admin (e.g. http://your-server-ip:5380)
  2. Log in with your admin credentials
  3. Go to Administration (gear icon, top right)
  4. Scroll down to Sessions
  5. Under Create API Token, enter a name (e.g. mcp-server)
  6. Click Create
  7. Copy the token value shown - this is the only time it will be displayed

Option B: API (curl)

# Login first to get a session token
curl -s -X POST 'http://your-server-ip:5380/api/user/login' \
  -d 'user=admin&pass=yourpassword' | jq -r '.response.token'

# Then create a non-expiring API token using the session token
curl -s -X POST 'http://your-server-ip:5380/api/user/createToken' \
  -d 'user=admin&pass=yourpassword&tokenName=mcp-server' | jq -r '.response.token'

Storing the token securely:

# Option 1: Pass directly as env var (simplest)
claude mcp add technitium-dns \
  --env TECHNITIUM_TOKEN=your-token-here ...

# Option 2: Use a token file (more secure - keeps token out of shell history)
echo "your-token-here" > ~/.technitium-token
chmod 600 ~/.technitium-token

claude mcp add technitium-dns \
  --env TECHNITIUM_TOKEN_FILE=~/.technitium-token ...

Local Network (HTTP)

If your Technitium server doesn't have TLS configured (common for LAN-only setups), you need to explicitly allow HTTP:

claude mcp add technitium-dns \
  --env TECHNITIUM_URL=http://your-server-ip:5380 \
  --env TECHNITIUM_TOKEN=your-token \
  --env TECHNITIUM_ALLOW_HTTP=true \
  -- node /path/to/technitium-mcp-secure/dist/index.js

A warning will be logged to stderr reminding you that credentials are sent in plaintext.

Read-only Mode

For monitoring-only use cases, hide all write tools:

claude mcp add technitium-dns-readonly \
  --env TECHNITIUM_URL=http://your-server-ip:5380 \
  --env TECHNITIUM_TOKEN=your-token \
  --env TECHNITIUM_READONLY=true \
  --env TECHNITIUM_ALLOW_HTTP=true \
  -- node /path/to/dist/index.js

Rate Limits

  • Global: 100 requests/minute
  • Create/mutate operations: 10/minute
  • Delete/flush operations: 5/minute

Audit Log

All tool calls are logged as JSONL to stderr with timestamps, tool name, sanitized arguments, result status, and duration. Sensitive values (tokens, passwords) are redacted before logging.

Requirements

  • Node.js >= 18
  • Technitium DNS Server v14+

License

MIT

Reviews

No reviews yet

Sign in to write a review