list_snapshots
Pack: wayback · Endpoint: https://gateway.pipeworx.io/wayback/mcp
List the captured snapshots of a URL in the Internet Archive Wayback Machine over time, using the CDX index. Each entry includes the capture timestamp, the original URL, HTTP status code, MIME type, content digest and a direct Wayback snapshot URL. Optionally restrict to a date range with from/to (YYYYMMDD).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The page URL to list archived snapshots for, e.g. “example.com”. |
limit | number | no | Maximum number of snapshots to return (default 50, max 1000). |
from | string | no | Optional start of date range as YYYYMMDD. |
to | string | no | Optional end of date range as YYYYMMDD. |
Example call
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":"list_snapshots","arguments":{}}}'
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.