epstein_list_documents
Pack: epstein · Endpoint: https://gateway.pipeworx.io/epstein/mcp
Inventory of every document held from the House Oversight Epstein investigation: title, kind, page count, publication date and the committee URL. Says which documents are scans with no searchable text. Use it to see what the corpus contains before searching it, or to get a document id for epstein_get_document.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
doc_type | string | no | Restrict to one kind of document. |
limit | number | no | Max documents, default 50, max 200. |
Example call
Arguments
{}
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_list_documents","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('epstein_list_documents', {});
More examples
{
"doc_type": "transcript"
}
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.