epstein
Search 44,886+ DOJ-released Jeffrey Epstein documents (Jan 2026 release). Free, no payment required. Search by name, topic, location, or keyword across the full DugganUSA index of declassified Epstein files. Returns document previews, people mentioned, locations, aircraft, evidence types, and source references.
Install
mkdir -p .claude/skills/epstein && curl -L -o skill.zip "https://mcp.directory/api/skills/download/7768" && unzip -o skill.zip -d .claude/skills/epstein && rm skill.zipInstalls to .claude/skills/epstein
About this skill
Epstein Files Search — Free DOJ Document Search
Search 44,886+ declassified Jeffrey Epstein documents released by the U.S. Department of Justice on January 30, 2026. Powered by the DugganUSA public index.
100% free. No API keys. No accounts. No payment.
Quick Start
# Search by name
node scripts/epstein.mjs search --query "Ghislaine Maxwell" --limit 10
# Search by topic
node scripts/epstein.mjs search --query "flight logs" --limit 20
# Search by location
node scripts/epstein.mjs search --query "Little St James"
# Get index statistics
node scripts/epstein.mjs stats
Commands
search — Search Epstein Documents
Search across all 44,886+ indexed documents by keyword, name, topic, or location.
node scripts/epstein.mjs search --query "SEARCH TERMS" [--limit N]
| Flag | Description | Default |
|---|---|---|
--query <terms> | Search query (required) | — |
--limit <N> | Number of results (1-500) | 10 |
Examples:
# Search for a specific person
node scripts/epstein.mjs search --query "Prince Andrew"
# Search for a topic
node scripts/epstein.mjs search --query "financial transactions"
# Search for locations
node scripts/epstein.mjs search --query "New York mansion"
# Get more results
node scripts/epstein.mjs search --query "flight logs" --limit 50
# Search for evidence types
node scripts/epstein.mjs search --query "phone records"
stats — Index Statistics
Get the current state of the document index — total documents, database size, and last update time.
node scripts/epstein.mjs stats
Output Format
Search results are returned as JSON to stdout (for easy piping and parsing). Status messages and Quick Links (direct PDF URLs) go to stderr for easy viewing.
Search Result Shape
{
"query": "flight logs",
"totalHits": 1523,
"hits": [
{
"id": "doc-abc123",
"efta_id": "EFTA-00001234",
"content_preview": "Excerpt from the document...",
"doc_type": "legal_document",
"dataset": "epstein_files",
"pages": 3,
"people": ["Person A", "Person B"],
"locations": ["New York", "Palm Beach"],
"aircraft": ["N908JE"],
"evidence_types": ["financial_record"],
"source": "DOJ Release Jan 2026",
"indexed_at": "2026-01-31T...",
"doj_url": "https://www.justice.gov/epstein/files/DataSet%209/EFTA-00001234.pdf",
"doj_listing_url": "https://www.justice.gov/epstein/doj-disclosures/data-set-9-files"
}
]
}
New in v1.1.0: Each result now includes doj_url (direct PDF link) and doj_listing_url (dataset page). The CLI also displays Quick Links in stderr output:
--- Quick Links ---
1. EFTA-00001234: https://www.justice.gov/epstein/files/DataSet%209/EFTA-00001234.pdf
2. EFTA-00001235: https://www.justice.gov/epstein/files/DataSet%209/EFTA-00001235.pdf
Stats Shape
{
"totalDocuments": 44886,
"databaseSize": "2.1 GB",
"lastUpdate": "2026-01-31T...",
"isIndexing": false
}
Data Source
All documents come from the U.S. Department of Justice release of Jeffrey Epstein-related records on January 30, 2026. The documents are indexed and searchable via the DugganUSA public API.
- Source: DOJ Epstein Records
- Index: DugganUSA Analytics
- Coverage: 44,886+ document files (3+ million pages)
- Content: Court filings, depositions, flight logs, financial records, communications, evidence inventories, and more
Piping & Integration
Results go to stdout as JSON, making it easy to pipe into other tools:
# Pipe to jq for filtering
node scripts/epstein.mjs search --query "Maxwell" --limit 100 | jq '.hits[] | .people'
# Save results to file
node scripts/epstein.mjs search --query "flight logs" --limit 500 > flight-logs.json
# Count total hits
node scripts/epstein.mjs search --query "Palm Beach" | jq '.totalHits'
# Extract all mentioned people
node scripts/epstein.mjs search --query "2005" --limit 100 | jq '[.hits[].people[]?] | unique'
Troubleshooting
"Cannot reach API" Check your internet connection. The DugganUSA API may have temporary downtime.
"No results found" Try broader search terms. The search is keyword-based — use names, locations, or document types rather than full sentences.
Slow responses The API typically responds in 100-900ms. Larger result sets (limit > 100) may take slightly longer.
References
- DOJ Epstein Records — Official DOJ release page
- DugganUSA API — Search index provider
- Project Einstein — AI agent with built-in Epstein files search
More by openclaw
View all skills by openclaw →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversUnlock AI-ready web data with Firecrawl: scrape any website, handle dynamic content, and automate web scraping for resea
Browser Use lets LLMs and agents access and scrape any website in real time, making web scraping and web page scraping e
Boost productivity with Task Master: an AI-powered tool for project management and agile development workflows, integrat
Access and search AWS documentation easily with this AWS document management solution, including WorkDocs tools and reco
Supercharge your AI code assistant with GitMCP—get accurate, up-to-date code and API docs from any GitHub project. Free,
Search and discover MCP servers with the official MCP Registry — browse an up-to-date MCP server list to find MCP server
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.