npm @domainintel/mcpstdioMITupdated 1mo ago
An MCP server that gives AI agents live domain intelligence: WHOIS, DNS, SSL/TLS, HTTP security headers, reputation, and subdomain discovery for any domain. It is the same analysis engine that powers DomainIntel.app.
What can you do with domainintel mcp?
@domainintel/mcp
An MCP server that gives AI agents live domain intelligence: WHOIS, DNS, SSL/TLS, HTTP security headers, reputation, and subdomain discovery for any domain. It is the same analysis engine that powers DomainIntel.app.
Tools
| Tool | Returns |
|---|---|
whois_lookup |
Registrar, creation/expiry/updated dates, registrant country, privacy status, nameservers |
dns_records |
A, AAAA, MX, TXT, NS, CNAME, CAA records + SPF/DMARC presence + misconfiguration warnings |
ssl_certificate |
Validity, issuer, expiration, days remaining, protocol, warnings |
security_headers |
HSTS, CSP, X-Frame-Options and others, scored with recommendations |
domain_reputation |
DNSBL / Spamhaus blocklist checks and a reputation score |
subdomain_discovery |
Subdomains via Certificate Transparency logs and common-prefix probing |
full_domain_report |
Every analyzer at once plus an overall A+ to F security score |
analyze_email_headers |
Parses a raw email header block: SPF/DKIM/DMARC results, the Received delivery path with timing, key envelope fields, and a From-vs-Return-Path spoofing flag |
Every tool except analyze_email_headers takes a single domain argument; protocol, www., and paths are stripped automatically. analyze_email_headers takes a headers string (a pasted raw header block) instead.
Requirements
- Node.js 18 or newer
Install
Claude Code
claude mcp add domainintel -- npx -y @domainintel/mcp
Claude Desktop
Add to claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"domainintel": {
"command": "npx",
"args": ["-y", "@domainintel/mcp"]
}
}
}
Any other MCP client
The server speaks MCP over stdio:
npx -y @domainintel/mcp
Example prompts
- "Run a full domain report on stripe.com"
- "What are the MX records for github.com, and does it have DMARC?"
- "Is the SSL certificate for example.org close to expiring?"
Development
Run from source (no build needed):
git clone <repo> && cd domainintel.app
npm install
npm run mcp # node mcp/server.mjs
Building & publishing
The published package is a single self-contained bundle (the analyzers and all JS dependencies are bundled with esbuild; Node built-ins resolve at runtime).
npm run build:mcp # from repo root -> mcp/dist/server.mjs
cd mcp && npm publish # prepublishOnly rebuilds the bundle
License
MIT
Install
Add domainintel mcp to your client. Pick the one you use.
claude mcp add mcp -- npx -y @domainintel/mcpcodex mcp add mcp -- npx -y @domainintel/mcpamp mcp add mcp -- npx -y @domainintel/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@domainintel/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@domainintel/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@domainintel/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@domainintel/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@domainintel/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@domainintel/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@domainintel/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@domainintel/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @domainintel/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
8 tools
domainintel mcp exposes 8 tools to a connected agent.
- whois_lookup
- Registrar, creation/expiry/updated dates, registrant country, privacy status, nameservers
- dns_records
- A, AAAA, MX, TXT, NS, CNAME, CAA records + SPF/DMARC presence + misconfiguration warnings
- ssl_certificate
- Validity, issuer, expiration, days remaining, protocol, warnings
- security_headers
- HSTS, CSP, X-Frame-Options and others, scored with recommendations
- domain_reputation
- DNSBL / Spamhaus blocklist checks and a reputation score
- subdomain_discovery
- Subdomains via Certificate Transparency logs and common-prefix probing
- full_domain_report
- Every analyzer at once plus an overall A+ to F security score
- analyze_email_headers
- Parses a raw email header block: SPF/DKIM/DMARC results, the Received delivery path with timing, key envelope fields, and a From-vs-Return-Path spoofing flag
Score
69 / 100
Good
- Documentation22/25
- Maintenance16/25
- Trust13/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 38 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.2Latest | Jun 29, 2026 |