epstein_search_documents
Pack: epstein · Endpoint: https://gateway.pipeworx.io/epstein/mcp
Full-text search across the House Oversight Committee documents from the Jeffrey Epstein investigation — transcribed interviews, subpoenas and letters the committee published as PDFs. Returns the matching page with a snippet, the document title and the committee URL, so every result can be checked at source. Use it to find what a named witness said under questioning, which institutions were subpoenaed, or where a topic appears in the record.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Words to find in the document text, e.g. “Metropolitan Correctional Center” or “non-prosecution agreement”. |
doc_type | string | no | Restrict to one kind of document. |
limit | number | no | Max matching pages, default 10, max 50. |
Example call
Arguments
{
"query": "non-prosecution agreement"
}
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_search_documents","arguments":{"query":"non-prosecution agreement"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('epstein_search_documents', {
"query": "non-prosecution agreement"
});
More examples
{
"query": "Metropolitan Correctional Center",
"limit": 5
}
{
"query": "subpoena",
"doc_type": "letter"
}
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.