tech-stack-detector-mcp
Detects whether a website uses Cloudflare as a CDN, providing confidence score and evidence from HTTP headers.
Detects whether a website uses Django as a web framework, providing confidence score and evidence from HTTP responses and HTML markup.
Detects whether a website uses Drupal as a CMS, providing confidence score and evidence from HTTP headers and HTML markup.
Detects whether a website uses Ghost as a CMS, providing confidence score and evidence from HTTP responses and HTML markup.
Detects whether a website uses Laravel as a web framework, providing confidence score and evidence from HTTP responses and HTML markup.
Detects whether a website uses Next.js as a framework, providing confidence score and evidence from script patterns and HTML markup.
Detects whether a website uses PHP as a programming language, often implied by other detected technologies like WordPress.
Detects whether a website uses React as a JavaScript library, providing confidence score and evidence from script src patterns and HTML markup.
Detects whether a website uses Shopify as an ecommerce platform, providing confidence score and evidence from HTTP headers and HTML markup.
Detects whether a website uses Wix as a CMS/platform, providing confidence score and evidence from HTTP responses and HTML markup.
Detects whether a website uses WordPress as a CMS, providing confidence score and evidence from meta tags and HTML markup.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tech-stack-detector-mcpwhat tech stack does example.com use?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Website Technology Detector: Tech Stack Scanner
Detect what technology any website runs on — CMS, web framework, JavaScript libraries, ecommerce platform, analytics/tag managers, web server, CDN, hosting, and marketing/pixel tags — from a single URL. A structured technology lookup, built as an MCP tool an agent can call directly.
An MCP server hosted on MCPize. Also published as an Apify Actor with the same fingerprint core.
What it does
Website Technology Detector fetches a single public page — the URL you give it, plus whatever redirect it issues — and matches its HTTP response headers, cookies, HTML markup, meta tags and <script> src patterns against a fingerprint dataset of over 7,500 technologies. It returns every technology it finds with a category, a confidence score, and the evidence that triggered the match. No headless browser: it's a plain, fast HTTP fetch, which is exactly why it's cheap enough to run in bulk.
Who it's for: agencies scoping a prospect's site before a pitch, sales and lead-gen teams qualifying leads by tech stack, competitive researchers tracking what tools competitors use, security teams doing passive recon on exposed software/versions, and developers who just want to know what a site is built with.
Related MCP server: Wappalyzer MCP
Why it's built this way
Real fingerprint matching, not a guess — an open-source community fingerprint dataset of over 7,500 technologies, refreshed monthly.
No headless browser — a single lightweight
fetch, capped and streamed, never a multi-second Puppeteer/Playwright launch. Fast and cheap enough to bulk-check dozens of sites.Honest about failure — a blocked or anti-bot-protected site is reported as
BLOCKED, never silently reported as "no technology detected." That distinction is the main way naive detectors mislead people.Confidence-scored, with evidence — every technology comes with a 0-100 confidence score and a short note on what matched (a header, a cookie, a script src, markup), not a black-box yes/no.
Bulk-ready — scan up to 50 URLs in one call, 5 at a time, with a pass/fail summary.
Nothing stored — pages are fetched, matched, and forgotten. No crawling beyond the page you asked for.
Why an MCP tool rather than a browser extension
Checking one site at a time by hand is fine when you have one site. This server wraps the same fingerprint-matching technique as a structured MCP tool — call it from an agent, a script, or a workflow, get typed JSON back rather than a page you have to read, and check up to 50 sites in a single call instead of one tab at a time.
Who it's for
For sales and lead generation. Filter a prospect list down to the sites running the platform your product integrates with, so outreach goes where the integration story is already true.
For agencies. Check a prospect's stack before a pitch and open with what they actually run rather than a generic capability deck.
For developers and AI agents. Call detect_stack as a CRM enrichment step: submit a domain, attach the detected stack to the record, route the lead on what came back.
When to use it, and when not to
Use it to identify a site's public technology signals — CMS, framework, ecommerce platform, analytics, CDN and hosting — for one site or up to 50 at a time.
Do not use it as a security audit or an inventory of everything a site runs. It reads one public page and reports what left an observable trace; absence of a technology means no signature matched, not that it is definitely not in use.
Use cases
Agency prospecting — check what a prospect's current site is built on before a pitch or proposal.
Sales / lead-gen qualification — filter a lead list by CMS or ecommerce platform (e.g. only Shopify or only WordPress sites).
Competitive research — see which analytics, tag managers, or marketing tools competitors run.
Security recon — passively identify exposed software and versions from public headers/markup as a first-pass reconnaissance step.
Bulk customer/lead-list enrichment — run a CSV of domains through
bulk_detect_stackto tag each one by platform.
Tools
detect_stack
Fetch one public page and detect its technology stack; returns validity, category, confidence and evidence per technology, and honestly distinguishes "blocked" from "nothing detected."
Input | Type | Description |
|
| A website URL, e.g. |
Example call:
{ "url": "wordpress.org" }Example output:
{
"input": "wordpress.org",
"finalUrl": "https://wordpress.org/",
"httpStatus": 200,
"status": "OK",
"technologies": [
{ "name": "WordPress", "category": "CMS", "confidence": 100, "evidence": "meta: generator, html markup" },
{ "name": "PHP", "category": "Programming languages", "confidence": 100, "evidence": "implied by WordPress" },
{ "name": "Cloudflare", "category": "CDN", "confidence": 100, "evidence": "header: server" }
],
"categoriesSummary": { "CMS": 1, "Programming languages": 1, "CDN": 1 }
}bulk_detect_stack
Detect the technology stack for up to 50 URLs in one call, processed 5-at-a-time; returns one result per URL plus a pass/fail summary. A single bad URL never fails the batch.
Input | Type | Description |
|
| 1-50 website URLs to scan. |
Example call:
{ "urls": ["wordpress.org", "shopify.com"] }Output: { results: [ per-url detect_stack objects ], summary: { total, ok, no_tech, unreachable, blocked, invalid_input } }.
FAQ
What CMS does a site use? Call detect_stack with the URL — if it's built on WordPress, Shopify, Wix, Drupal, Ghost, or any of thousands of other platforms, it'll show up under the CMS or Ecommerce category with a confidence score.
How do I detect a website's framework? Same call — JavaScript and web frameworks (React, Vue, Next.js, Laravel, Django, and hundreds more) are detected from script patterns and response headers alongside everything else.
What technologies does a website use overall? detect_stack returns every match in one call: CMS, frameworks, analytics, CDN, hosting, ecommerce, marketing pixels — not just one category at a time.
Is this site on Shopify or WordPress? Check the technologies array in the response for "Shopify" or "WordPress" by name, or check categoriesSummary for a quick "Ecommerce" vs "CMS" signal.
Can I bulk-check a list of sites? Yes — bulk_detect_stack accepts up to 50 URLs per call, checked 5 at a time. For larger lists, split into batches of 50.
What if a site blocks the check? You'll get status: "BLOCKED" (403, rate-limiting, or a known anti-bot/challenge wall) instead of a false "no technology detected." That distinction matters — a blocked check tells you nothing about the site's actual stack, so don't read it as one.
Does it use a headless browser? No. It's a single HTTP fetch of the page's HTML and headers — no JavaScript execution, no browser automation. That keeps it fast and keeps this server's own resource use low, but it also means technologies that only reveal themselves after client-side JavaScript runs won't be detected.
Trust & limits
Fetches only the single public page at the URL you give it (and whatever redirect that page itself issues) — no login or paywall bypass, no anti-bot evasion, no crawling beyond that one page. The tool identifies itself honestly via its User-Agent. Nothing is stored: pages are fetched, matched against the fingerprint dataset, and forgotten. This is a lookup aid, not a guarantee — some technologies are genuinely undetectable without running JavaScript, and a low-confidence match is a hint, not a certainty.
Using this from an AI agent (MCP)
// detect_stack
{ "url": "wordpress.org" }
// bulk_detect_stack
{ "urls": ["wordpress.org", "shopify.com"] }Local development
npm install
npm run dev # http://localhost:8080/mcp, hot reload
npm test # vitest
npm run build # tsc + copies the fingerprint dataset into dist/Deployment
mcpize login
mcpize deploy
mcpize publish --showLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables querying the BuiltWith API to discover and analyze website technology stacks, including frameworks, analytics tools, CMS platforms, and other technologies used by any domain.2MIT

Wappalyzer MCPofficial
Alicense-qualityDmaintenanceA local MCP server that wraps the Wappalyzer API to identify web technologies, subdomains, and site metadata. It enables users to perform site lookups and access technology categories through natural language interfaces.4MIT- AlicenseAqualityDmaintenanceTechnographics for desktop apps (like builtwith.com)4193MIT
- AlicenseAqualityAmaintenanceDetects a company's technology stack from its public web presence. Returns structured tech signals for sales targeting and competitive analysis.1991MIT
Related MCP Connectors
Domain & brand intelligence: company enrichment, tech stack detection, brand research.
Live tech-stack scan of any public site — vendors, account IDs, scripts, JSON-LD. 2 tools.
URL intelligence for AI agents and developers. 16 tools, 25 signal weights, 20 free checks.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apifymcpfactory-droid/tech-stack-detector-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server