Server Detection: a beginner's guide
Identify web server software
Web servers: the program that hands a webpage to your browser
A web server is the piece of software that listens for HTTP requests and sends back HTML responses. It is the most fundamental component of any website, even though most users never think about it directly. The major web servers in use on the public internet today are nginx (around 35% of all sites, originally Russian, now open-source under F5), Apache HTTP Server (around 20%, the historical king of the web from the 1990s), Cloudflare Server (around 25%, the proxy layer in front of any site that uses Cloudflare), Microsoft IIS (legacy enterprise), LiteSpeed (commercial), and Caddy (newer, automatic HTTPS by default). Modern hosting platforms like Vercel, Netlify, and Fly.io have their own custom servers based on these foundations.
You should care because the web server in use is one of the most reliable hints about how a website is hosted and operated. A site running plain Apache 2.4 on a shared hosting provider tells one story; a site running nginx on Kubernetes tells another; a site behind Cloudflare tells a third (you can't see the underlying server at all, which is the point). The web server choice usually correlates with the operating system, the deployment workflow, and the operations culture of the team. For sales, security review, and migration planning, knowing the web server is one of the cheapest pieces of intelligence to gather.
The four things every web server detection check looks at:
The `Server` HTTP response header. This is the most direct signal — `Server: nginx/1.24.0` is unambiguous. Many sites strip or rewrite this header, but most don't.
The `X-Powered-By` header. Some servers and frameworks set this; it often reveals the underlying platform (PHP, ASP.NET, Express.js).
Distinctive default error pages. A 404 page that says "nginx" or "Apache HTTP Server Test Page" is a fingerprint.
Header order and casing. Different web servers serialize HTTP headers in slightly different orders and casing conventions, which is a subtle but reliable signal even when the obvious headers are stripped.
Three questions a web server detection check answers:
What web server software is this site running?
Is the site behind a CDN or reverse proxy that hides the underlying server?
For a security review, is the server version current or known-vulnerable?
The cost of not knowing the web server is missing one of the most basic facts about a website's infrastructure. The fix is one HTTP HEAD request and a quick header inspection. The most useful public reference for industry market share is the W3Techs web server survey.
The Server Detection endpoint, in plain language
In one sentence: Identify web server software
Identifies the web server software running on a domain by analyzing HTTP (HyperText Transfer Protocol) headers. Detects server type, version when exposed, and server-side technologies.
Don't worry if some of the words above are still unfamiliar — there's a plain-language glossary at the bottom of this page, and most of the terms link to their own beginner guides if you want to learn more.
What is actually happening when you call it
Here's what's actually happening behind the scenes when you call this endpoint:
Analyzes HTTP (HyperText Transfer Protocol) response headers (Server, X-Powered-By, X-AspNet-Version, etc.) to identify web server software (Apache, nginx, IIS, LiteSpeed), application servers, and programming languages/frameworks.
If you're using an AI assistant through MCP, you don't need to understand any of the technical details — the assistant calls the tool and translates the result for you.
Why this specific tool matters
Let's skip the marketing fluff and answer the only question that actually matters: why should you, a real human with a real to-do list, care about the Server Detection tool? Here's the plain-English version, written the way you'd hear it from a friend who happens to do this for a living.
Server identification helps with security assessments (version-specific vulnerabilities), competitive analysis, and ensuring server headers don't leak sensitive information.
Picture this in real life. Imagine a security engineer. Here's the situation they're walking into: Identify server versions to check for known vulnerabilities in deployed software. Without the right tool, that person would be stuck copy-pasting between five browser tabs, reading documentation written for engineers, and crossing their fingers that the answer they cobble together is correct. With the Server Detection tool, the same person gets a clear answer in seconds — no spreadsheets, no guessing, no waiting for someone on the infrastructure team to free up.
Three questions this tool answers in plain English. If any of these have ever crossed your mind, the Server Detection tool is built for you:
What is this website actually built with, layer by layer?
Who hosts it, who runs analytics on it, who delivers the assets?
Is the company on a stack that fits my product, my pitch, or my integration?
You can either click the tool and get the answer yourself, or ask your AI assistant — connected through MCP (Model Context Protocol) — to ask the question for you and translate the answer into something you can paste into Slack.
Who gets the most out of this. Sales teams qualifying leads, marketers researching competitors, partnership managers scoping integrations, and security teams looking for known-vulnerable software in the wild. If you see yourself in that list, this is one of the EdgeDNS tools you should bookmark today.
What happens if you skip this entirely. Skip it and you're guessing at how a website is built — which kills sales calls, integration scoping, and competitive research. That's why running this check — even once a month — is one of the cheapest forms of insurance you can give your domain.
Available on the free plan. The technical details: `GET /v1/domain/server`.
When would I actually use this?
If you're still on the fence about whether the Server Detection tool belongs in your toolbox, this section is for you. Below you'll meet three real people — a security engineer, a devops engineer, and a solutions architect — facing three real situations where this tool turns a stressful afternoon into a five-minute task. Read whichever story sounds closest to your week.
Story 1: Vulnerability Assessment
Imagine you're a security engineer. Identify server versions to check for known vulnerabilities in deployed software.
Why it matters: Prioritize patching by identifying exposed server versions.
Story 2: Security Hardening
Imagine you're a devops engineer. Verify server headers are properly configured to not leak version information.
Why it matters: Reduce information disclosure that aids attackers.
Story 3: Infrastructure Analysis
Imagine you're a solutions architect. Understand the web server technology used by potential partners or competitors.
Why it matters: Inform infrastructure decisions based on market patterns.
Common situations across teams. Beyond the three stories above, here are the everyday workplace moments when people across the company reach for the Server Detection tool — or one of the tools right next to it in this category. If any of these are on your calendar this month, that's your sign:
During sales prospecting, to qualify a lead by what they are running.
During competitive research, to understand what a rival is built with.
When scoping an integration or partnership.
When you suspect a target is using a known-vulnerable version of something.
If you can see yourself in even one of those bullets, the Server Detection tool will pay for itself the first time you use it.
Still not sure? Here's the easiest test in the world. Open Claude, ChatGPT, Gemini, or any other AI assistant connected to the EdgeDNS MCP server and ask, in your own words: "Is the Server Detection tool useful for my job?" The assistant will look at the tool, ask you a couple of follow-up questions about what you're trying to accomplish, and give you a straight answer in plain English. No commitment, no signup forms, no jargon.
The easiest way: just ask your AI assistant
If you've connected the EdgeDNS MCP server to Claude, ChatGPT, Gemini, Cursor, or any other AI assistant, you don't need to write any code. Just ask in plain English:
"Use the Server Detection tool to check example.com and explain anything that looks wrong in plain language."
The AI will figure out which tool to call, fill in the right parameters, run it, and then explain the result back to you. No copy-pasting between tabs. No reading raw JSON. No memorizing endpoint names.
MCP (Model Context Protocol) access is free on every plan, including the free tier. One API key works for both REST and AI — you do not have to choose.
The technical way: call it from code
If you're a developer and want to call the endpoint from a script or your own application, here's the simplest possible example. Replace the placeholder API key with the real one from your dashboard.
# Replace edns_live_YOUR_KEY with your real API key from the dashboard
curl -H "Authorization: Bearer edns_live_YOUR_KEY" \
"https://api.edgedns.dev/v1/domain/server?domain=example.com"What you need to provide
There's just one piece of information you need to provide. The table below explains exactly what it is and what a real value looks like.
| Field | Type | Required? | What it means | Example |
|---|---|---|---|---|
domain | string | Yes | The domain to detect server software for | example.com |
What you get back
When you call this tool, you'll get back a JSON object with the fields below. If you're talking to it through an AI assistant, the assistant reads these for you and explains them in plain language — you don't need to memorize them.
| Field | Type | What you'll see in it |
|---|---|---|
domain | string | The queried domain |
server | object | Server details (name, version, confidence) or null |
powered_by | string | X-Powered-By header value |
headers | object | Raw server-related headers (server, x_powered_by) |
Words you might be wondering about
If any words on this page felt like jargon, here's a plain-language version. Click any linked term to read a full beginner-friendly guide.
HTTP (HyperText Transfer Protocol) — The language web browsers and websites use to talk to each other.
Need Programmatic Access?
Automate domain intelligence with 100+ API endpoints and a free MCP server for AI integration.