epstein_flight_log_search
Pack: epstein · Endpoint: https://gateway.pipeworx.io/epstein/mcp
Structured search over Epstein’s pilot flight logbook (Government Exhibit 662-RR, USA v. Ghislaine Maxwell, 20-cr-330, S.D.N.Y.) — date, aircraft, tail number, route and the pilot’s own passenger/remarks entry for each leg. Passenger initials and names are returned EXACTLY as the pilot wrote them (‘JE, GM, SK’) — never resolved to a full identity, per design decision C on this build. Only 163 of an estimated 3,000+ logged legs are ingested (13 of 118 exhibit pages, spanning 1991-2005) because the rest requires further page-by-page visual transcription — call epstein_flight_log_search with no filters to see exactly which pages are covered before concluding an absence. Use it to find who is logged on a given tail number, route or date range, or to search the remarks text for a name or initials.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
passenger | string | no | Substring to find in the remarks/passenger entry, e.g. “GM” or “Clinton”. Case-insensitive. |
tail_number | string | no | Aircraft registration as printed, e.g. “N908JE”. |
from | string | no | Departure identifier as printed, e.g. “TEB”. |
to | string | no | Arrival identifier as printed, e.g. “PBI”. |
date_from | string | no | Earliest flight date, YYYY-MM-DD. |
date_to | string | no | Latest flight date, YYYY-MM-DD. |
limit | number | no | Max rows, default 20, max 100. |
Example call
Arguments
{
"tail_number": "N908JE"
}
curl
curl -X POST https://gateway.pipeworx.io/epstein/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"epstein_flight_log_search","arguments":{"tail_number":"N908JE"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('epstein_flight_log_search', {
"tail_number": "N908JE"
});
More examples
{
"date_from": "1991-08-01",
"date_to": "1991-09-01"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"epstein": {
"url": "https://gateway.pipeworx.io/epstein/mcp"
}
}
}
See Getting Started for client-specific install steps.