http_headers
Pack: hackertarget · Endpoint: https://gateway.pipeworx.io/hackertarget/mcp
“What headers does [site] return” / “what server runs [X]” / “check the security headers” / “does [site] redirect” — HTTP response headers fetched by HackerTarget, including status line, Server, redirect Location, and security headers such as HSTS and CSP. Use to fingerprint a stack or audit header hygiene without loading the page yourself.
Example call
Arguments
{
"target": "https://pipeworx.io/"
}
curl
curl -X POST https://gateway.pipeworx.io/hackertarget/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"http_headers","arguments":{"target":"https://pipeworx.io/"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('http_headers', {
"target": "https://pipeworx.io/"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"hackertarget": {
"url": "https://gateway.pipeworx.io/hackertarget/mcp"
}
}
}
See Getting Started for client-specific install steps.