get_capture_count
Pack: wayback · Endpoint: https://gateway.pipeworx.io/wayback/mcp
Count how many times a URL has been captured by the Internet Archive Wayback Machine, and find when a URL was first and last archived. Returns the total number of captures plus the earliest and latest capture timestamps (YYYYMMDDhhmmss).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The page URL to count archived captures for, e.g. “example.com”. |
Example call
Arguments
{
"url": "https://example.com"
}
curl
curl -X POST https://gateway.pipeworx.io/wayback/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_capture_count","arguments":{"url":"https://example.com"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_capture_count', {
"url": "https://example.com"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"wayback": {
"url": "https://gateway.pipeworx.io/wayback/mcp"
}
}
}
See Getting Started for client-specific install steps.