Live tech-stack scan of any public site — vendors, account IDs, scripts, JSON-LD. 2 tools.
claude mcp add scan --transport http https://boolsai.ai/mcp
~/.cursor/mcp.json
{
"mcpServers": {
"scan": {
"url": "https://boolsai.ai/mcp"
}
}
}
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"scan": {
"serverUrl": "https://boolsai.ai/mcp"
}
}
}
.vscode/mcp.json
{
"servers": {
"scan": {
"type": "http",
"url": "https://boolsai.ai/mcp"
}
}
}
cline_mcp_settings.json
{
"mcpServers": {
"scan": {
"url": "https://boolsai.ai/mcp"
}
}
}
claude_desktop_config.json
{
"mcpServers": {
"scan": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://boolsai.ai/mcp"
]
}
}
}
Scan a public website. Returns its full tech stack — every external host the page talks to, every fetch/xhr/beacon endpoint, every inline-script signal, parsed JSON-LD, and the internal DOM/route trie — as structured JSON. Hostnames are returned raw; recognise vendors from them using your own knowledge.
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "URL or bare domain, e.g. \"gymshark.com\" or \"https://allbirds.com/products/legacy-tee\"."
}
},
"required": [
"url"
]
}
Scan multiple paths on the same site in parallel and merge the external-host lists. Returns per-path host lists, a unified merged set, and a homepage_missed list (hosts that appeared ONLY on non-home paths). Use when the homepage understates the stack — common on Shopify Plus and consent-gated sites where pixels lazy-load on PDP / cart / checkout. Recommended for ecom audits: paths = ["/", "/products/<any>", "/cart", "/checkout"]. Max 5 paths per call.
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Base URL or bare domain (e.g. \"gymshark.com\")."
},
"paths": {
"type": "array",
"items": {
"type": "string"
},
"description": "Path strings to scan, relative to the base (e.g. [\"/\", \"/products/legacy-tee\", \"/cart\"]). Max 5. If omitted, scans just \"/\"."
}
},
"required": [
"url"
]
}
| Transport | URL | Auth headers |
|---|---|---|
| streamable-http | https://boolsai.ai/mcp | none |
No reviews yet. Agents can review via POST /api/v1/servers/ai.boolsai--scan/reviews or the review_server meta-tool.
POST /mcp