Look up the technology stack behind any domain, and the company running it.
MCPpedia last refreshed this data
com.stackscan/mcp-server is an MCP server that look up the technology stack behind any domain, and the company running it. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 85/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"stackscan": {
"env": {
"STACKSCAN_API_TOKEN": "your-token",
"STACKSCAN_TENANT_ID": "your-workspace-uuid"
},
"args": [
"-y",
"@stackscan/mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Ask your assistant what a website runs, and who is behind it.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@stackscan/mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @stackscan/mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
Transport for TMCP using STDIO
The graph based agentic IDE
Buddhist canon tools: search, passages, cross-canon parallels, dictionaries — all URN-cited.
MCP Security Weekly
Get CVE alerts and security updates for com.stackscan/mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Ask your assistant what a website runs, and who is behind it.
A Model Context Protocol server for the StackScan Tech Lookup API. Point Claude, Cursor, or any other MCP client at it and you can ask things like:
What is example.com built on?
Who's behind vercel.com? Where are they, what industry, what's their LinkedIn?
How many sites run Klaviyo, and in which countries?
Read-only by design. Nothing here writes to any system of yours.
You need a StackScan account. Sign in, open API Tokens in the dashboard, create a token, and copy your workspace UUID from the same page.
Download stackscan.mcpb from the
releases page, then drag it onto
Settings > Extensions. It asks for your API token and workspace ID and installs the
rest itself.
Settings → Developer → Edit Config, then add:
{
"mcpServers": {
"stackscan": {
"command": "npx",
"args": ["-y", "@stackscan/mcp-server"],
"env": {
"STACKSCAN_API_TOKEN": "your-token",
"STACKSCAN_TENANT_ID": "your-workspace-uuid"
}
}
}
}
Restart Claude Desktop. The tools appear under the connectors icon.
claude mcp add stackscan \
--env STACKSCAN_API_TOKEN=your-token \
--env STACKSCAN_TENANT_ID=your-workspace-uuid \
-- npx -y @stackscan/mcp-server
Same shape: command: npx, args: ["-y", "@stackscan/mcp-server"], and the two
environment variables. Check your client's own MCP docs for where its config file lives.
| Tool | What it does | Cost |
|---|---|---|
check_credits | Remaining balance and this month's allocation | free |
lookup_company | The company behind a domain: name, industry, city, country, LinkedIn | 1 credit |
lookup_domain_technologies | Technologies on ONE domain, in full: category and global usage for each (limit, default 50, max 100) | 1 credit |
lookup_technology | How many sites run a technology, and where they are | 1 credit |
lookup_companies | The companies behind up to 20 domains, as a compact table | 1 credit per domain with data |
lookup_domains_technologies | The technologies on up to 20 domains, as a compact table. Optional category filter | 1 credit per domain with data |
A lookup that finds nothing is not charged. Neither is check_credits.
There are two technology tools and they answer different questions.
lookup_domains_technologies is the breadth view: many domains, technology
names only, ideal for "which of these run Shopify?". lookup_domain_technologies
is the depth view: one domain, every technology with its category and how many
sites use it globally. The batch tool reports how many technologies it left out per
domain, so the model can offer to drill in.
The REST endpoints behind them take 100 domains per request, and these tools deliberately do not. A tool result goes straight into the model's context, and a hundred full company payloads is tens of thousands of tokens, which crowds out the conversation you are actually having, and the model then has to re-read all of it to answer anything. Twenty compact rows is a table a model can reason over.
It also refuses rather than truncates. If a batch would cost more than your session cap allows, it charges nothing and tells you how many you can afford. Quietly dropping domains would hand back an answer that looks complete and is not.
If you genuinely need hundreds of domains, that is what the REST endpoint is for.
| Variable | Required | Default | Notes |
|---|---|---|---|
STACKSCAN_API_TOKEN | yes | none | Dashboard → API Tokens |
| `STACKSCAN_TENANT_ID |