epstein_get_document
Pack: epstein · Endpoint: https://gateway.pipeworx.io/epstein/mcp
Read the full text of one document from the House Oversight Epstein investigation, a page at a time, given the document id from epstein_list_documents or a search result. Returns page text with the page numbers needed to cite it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
doc_id | string | yes | Document id from epstein_list_documents or a search result. |
page | number | no | First page to return, default 1. |
pages | number | no | How many pages, default 5, max 25. |
Example call
Arguments
{
"doc_id": "23d13db446610cfb",
"page": 1,
"pages": 2
}
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_get_document","arguments":{"doc_id":"23d13db446610cfb","page":1,"pages":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('epstein_get_document', {
"doc_id": "23d13db446610cfb",
"page": 1,
"pages": 2
});
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.