tech_detect
Pack: technographics · Endpoint: https://gateway.pipeworx.io/technographics/mcp
What a website is built with — the ecommerce platform, payment processor, CMS, JavaScript framework, analytics, marketing automation, chat widget, ad pixels, CDN, web server and visitor-identification tools it loads. Give a domain or URL (“shopify.com”). Each technology comes back with the evidence that identified it (a response header, a cookie name, a script it loads) so the answer is checkable. Answers “what technology stack does this site use”, “does this company use Stripe or Shopify”, “what analytics is this site running”, “is this site on HubSpot or Marketo”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | Website address — “stripe.com”, “www.example.com”, or a full https:// URL. |
Example call
Arguments
{
"url": "shopify.com"
}
curl
curl -X POST https://gateway.pipeworx.io/technographics/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tech_detect","arguments":{"url":"shopify.com"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tech_detect', {
"url": "shopify.com"
});
More examples
{
"url": "https://hubspot.com"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"technographics": {
"url": "https://gateway.pipeworx.io/technographics/mcp"
}
}
}
See Getting Started for client-specific install steps.