Forency
Enables detection of HubSpot usage (CRM and marketing automation) when analyzing a website's technology stack.
Enables detection of Salesforce usage (CRM and related platform services) when analyzing a website's technology stack.
Forency MCP Server
Let your AI assistant investigate any website's technology stack — CMS, ecommerce platform, JavaScript frameworks, analytics, CRM, marketing automation, payments, chat widgets, CDN, and hosting.
Ask Claude (or Cursor, or any MCP client):
"What tech stack does competitor.com run?"
"Which of these 15 prospects use HubSpot vs Salesforce?"
"Compare the analytics and payment stacks of these three stores."
Two ways to connect
Hosted — no install. If your client supports remote MCP servers, point it at
https://forency.io/api/mcp with your API key as a Bearer token. Nothing to
download, and you always get the current tools. Also listed on
Smithery.
Local — this package. For clients that run MCP servers on your machine:
Related MCP server: tech-stack-detector-mcp
Install
Add to your MCP config — claude_desktop_config.json, .mcp.json, or your client's equivalent:
{
"mcpServers": {
"forency": {
"command": "npx",
"args": ["-y", "forency-mcp"],
"env": { "FORENCY_API_KEY": "fcy_your_key" }
}
}
}Or with Claude Code:
claude mcp add forency -e FORENCY_API_KEY=fcy_your_key -- npx -y forency-mcpGet a free API key at forency.io — 100 scans/month, no credit card.
Tools
Tool | What it does |
| Full technology breakdown for one website |
| Up to 25 websites in one call, full detail for each |
| Side-by-side table across sites, optionally filtered to categories like |
Each URL scanned counts as one scan against your plan.
What this package does, and doesn't
This repository is the whole client. It is a thin stdio MCP server that forwards your request to the Forency REST API and formats the reply. Worth knowing before you hand any tool an API key:
it talks to
https://forency.ioand nothing elseit sends your API key and the URLs you asked about, nothing more
no telemetry, no analytics, no third-party calls
detection happens server-side, so it is not in this repo
You can read the entire thing in src/index.ts in about five minutes. Point it somewhere else with FORENCY_API_URL if you want to watch what it sends.
Environment
Variable | Required | Description |
| Yes | Your key from forency.io |
| No | API base URL (defaults to |
A note on detection
Forency reads the HTML and headers a site's server returns. It does not run a browser, so technologies injected purely by client-side JavaScript may not show up — a sparse result means little was detectable, not that a site runs nothing.
Pricing
Tier | Price | Scans/mo |
Free | $0 | 100 |
Starter | $29/mo | 1,000 |
Pro | $49/mo | 10,000 |
Enterprise | Custom | Unlimited |
BuiltWith's API starts at $295/mo and Wappalyzer's at $250/mo. Neither ships an MCP server.
Acknowledgements
Forency's detection is built on the technology fingerprints maintained by the webappanalyzer project, the community-maintained continuation of Wappalyzer's open-source fingerprint database, which is licensed GPL-3.0. That work is what makes accurate detection possible at this price, and it deserves the credit.
This MCP client contains no fingerprint data or detection code of its own and is released under the MIT license (see LICENSE).
License
MIT
Available Tools
3 toolsbatch_lookupLook up several websites at onceAInspect
Detect the technology stacks of up to 25 websites in one call, returning the full detail for each. Use it when working through a list of prospects, competitors, or portfolio sites. If you want a side-by-side view of who uses what, use compare_stacks instead. Counts one scan per URL against the caller's plan.
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | The websites to analyze, 1-25. Bare domains are fine. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears the full burden of behavioral disclosure. It adds important context by stating that full detail is returned for each URL and that the tool 'counts one scan per URL against the caller's plan,' which is a meaningful quota/billing behavior. It doesn't cover error handling or auth, but those are less critical for this read-style operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences, all functional: capability, use case, alternative, and quota impact. Key information is front-loaded, with zero filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one well-documented parameter and no output schema, the description covers purpose, usage, routing, and plan impact. Nothing essential for selecting or invoking the tool correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents the single parameter well, including min/max items and that bare domains are fine, so schema coverage is 100%. The description reinforces the batch aspect and return detail but adds no new parameter-level semantics beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Detect the technology stacks of up to 25 websites in one call.' It clearly distinguishes itself from the compare_stacks sibling by noting batch detection versus side-by-side comparison, and from lookup_tech_stack by explicitly framing this as the multi-URL version.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives explicit when-to-use guidance: 'when working through a list of prospects, competitors, or portfolio sites.' It also names an alternative and the condition for choosing it: 'If you want a side-by-side view of who uses what, use compare_stacks instead.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compare_stacksCompare the technology stacks of several websitesAInspect
Scan 2-25 websites and return a side-by-side table of which technologies each one uses. Answers questions like 'which of these prospects use HubSpot vs Salesforce?' or 'how does our stack compare to our competitors?'. For the full per-site detail rather than a table, use batch_lookup. Counts one scan per URL against the caller's plan.
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | The websites to compare, 2-25. Bare domains are fine. | |
| categories | No | Optional: only compare these categories, e.g. ['CRM', 'Analytics', 'Ecommerce']. Omit to compare every detected category. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It discloses the output format ('side-by-side table'), the quota impact ('Counts one scan per URL against the caller's plan'), and the allowed URL count ('2-25'). It doesn't mention failure handling or authorization, but the essential behavioral traits are present and it correctly implies a read-only scanning operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences: the first states the core function, the second gives examples, and the third provides the sibling alternative and quota note. It is front-loaded and economical, though the example questions add length without new operational detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 2-parameter tool with 100% schema coverage and no output schema, the description covers the essential pieces: what it does, the output shape, the quota, and the alternative tool. It doesn't address edge cases like invalid URLs, but that is beyond what an agent needs to make a correct call decision. The description is complete enough for safe and effective selection.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds minor context by mentioning '2-25' websites and that bare domains are fine, but this largely repeats the schema's parameter descriptions. No new meaning is added beyond what the schema already documents, so the score stays at the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear verb ('Scan') and resource ('2-25 websites'), and specifies the exact output ('side-by-side table of which technologies each one uses'). It explicitly distinguishes itself from the sibling batch_lookup by naming the alternative, so an agent can immediately tell them apart without opening either schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives concrete example queries ('which of these prospects use HubSpot vs Salesforce?') that illustrate when to use this tool. It also states the exclusion case ('For the full per-site detail rather than a table, use batch_lookup'), providing explicit routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_tech_stackLook up a website's technology stackAInspect
Detect the technologies a website runs: CMS, ecommerce platform, JavaScript frameworks, analytics, CRM, marketing automation, payment processors, chat widgets, CDN, and hosting. Use it to research a competitor, qualify a sales prospect, or check what a site is built with. Reads the HTML and headers the server sends, so anything injected only by client-side JavaScript may not appear — a sparse result means little was detectable, not that the site runs nothing. Counts as one scan against the caller's plan.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The website to analyze. A bare domain works — 'example.com' and 'https://example.com' are both fine. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully carries the behavioral burden and excels: it discloses the detection method (HTML and server headers), explains the client-side JavaScript limitation, and interprets sparse results as 'little detectable, not that the site runs nothing.' It even notes plan quota impact. This is exemplary behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense and front-loaded with the core purpose, followed by targeted use cases and critical caveats. Every sentence contributes: the category list specifies scope, the usage sentence gives context, the JavaScript limitation is vital, and the quota note is actionable. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no output schema, the description fully prepares an agent to use the tool correctly: what it detects, how detection works, its limitations, how to interpret results, and a billing/quota consequence. Nothing essential for invoking this single-parameter tool is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the url parameter at 100% coverage, including the bare-domain note, so the description adds little parameter-specific meaning. Baseline 3 is appropriate because the schema does the heavy lifting and the description complements it without needing to repeat details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb and resource ('Detect the technologies a website runs') and enumerates the technology categories covered, which is unambiguous. However, it does not explicitly differentiate itself from the sibling tools batch_lookup and compare_stacks, so it falls short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear use-case context: 'research a competitor, qualify a sales prospect, or check what a site is built with.' It does not, however, mention when to prefer this tool over the sibling tools or when to avoid it, so it lacks explicit exclusions or alternative routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
v1.1.0- First observed
batch_lookup - First observed
compare_stacks - First observed
lookup_tech_stack
TDQS
Scored across 3 tools
Each tool serves a distinct workflow: single-site lookup, bulk detail lookup, and side-by-side comparison. The descriptions explicitly cross-reference each other, making it clear when to choose one over the other.
Two names follow a verb_noun pattern (lookup_tech_stack, compare_stacks), while batch_lookup is a modifier_noun form. The inconsistency is minor and all names are still clear and predictable.
Three tools is well-scoped for a tech-stack detection server. Each tool covers a distinct usage size: single, batch, and comparative, with no redundant or unnecessary additions.
The tool surface covers the full intended workflow: looking up one site, looking up many sites, and comparing stacks across sites. There are no obvious dead ends or missing operations within the stated domain.
Maintenance
Related MCP Connectors
Detect 7,500+ technologies on any website - CMS, ecommerce, analytics, frameworks. ~$5/1,000 sites.
Detect the technology stack behind any website: frameworks, CMS, analytics, and more from one POST.
Search websites by source code, technology stack, analyze domains, and download lead lists.
Technographics — what a website is built with, read from the page itself.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables 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
- FlicenseNot gradedqualityBmaintenanceDetects what technologies (CMS, frameworks, analytics, etc.) a website uses by fingerprinting its HTTP response and markup, returning confidence-scored results for single or bulk URL queries.-
- AlicenseNot gradedqualityBmaintenanceDetects 50+ technologies on any website (CMS, JS frameworks, analytics, hosting, etc.) with confidence scores and evidence, using x402 micropayments.MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to investigate any website's technology stack, identifying CMS, ecommerce platforms, JavaScript frameworks, analytics, CRM, marketing automation, payments, chat, CDN, and hosting.-