extract-document-data▌
reducto.ai/extract-document-data · updated May 21, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Use Reducto's hosted MCP server to parse documents, extract schema-backed fields with citations, split packets, classify document types, and fetch job results from public URLs or Reducto-hosted files.
| name | "extract-document-data" |
| title | "Reducto Document Data Extractor" |
| description | "Use Reducto's hosted MCP server to parse documents, extract schema-backed fields with citations, split packets, classify document types, and fetch job results from public URLs or Reducto-hosted files." |
| website | "reducto.ai" |
| category | "document-intelligence" |
| tags | ["reducto", "mcp", "documents", "pdf", "ocr", "extraction", "classification", "hosted-mcp", "api"] |
| status | "draft" |
| partner | true |
| source | "first-party-customer-skill-spike" |
| updated | "2026-05-12" |
| recommended_method | "mcp" |
Reducto Document Data Extractor
Purpose
Use Reducto's hosted MCP server to turn messy documents into agent-ready structured data: parse PDFs, extract fields with citations, split large packets into constituent documents, classify document types, edit supported documents, and retrieve complete job results.
This skill intentionally uses Reducto's hosted MCP server so agents can get started without Python, uv, or a local install.
When to Use
Use this skill when the user asks to:
- Pull structured fields from invoices, contracts, insurance claims, financial filings, medical records, mortgage packets, or forms.
- Parse a PDF into text, tables, figures, bounding boxes, and layout-aware blocks.
- Split a multi-document packet into named sections.
- Classify scanned documents by type.
- Chain document operations through Reducto job IDs.
- Inspect or retrieve a previous Reducto job result.
Hosted MCP Setup
Use the hosted server at https://mcp.reducto.ai/mcp with a Reducto API key in the Authorization header.
{
"mcpServers": {
"reducto": {
"type": "http",
"url": "https://mcp.reducto.ai/mcp",
"headers": {
"Authorization": "Bearer $REDUCTO_API_KEY"
}
}
}
}
Get API keys from https://studio.reducto.ai/api-keys.
Important hosted-server constraint: the hosted server runs in Reducto's cloud and cannot read the user's local filesystem. For upload_file, pass a public https:// URL. For local files, either pre-upload through the Reducto API and pass the returned reducto:// URL, or switch to the local MCP server.
Input URL Rules
Reducto document tool parameters accept these URL schemes:
https://orhttp://: public document URL Reducto can fetch.reducto://: temporary Reducto file reference returned by upload/pre-upload.jobid://: reference to a previous processing job, useful for chaining parse into extract, split, classify, or get-job calls.
Do not pass raw local paths, file://, or private URLs to the hosted server. If the document is private, ask the user for a public signed URL or use a local/server-side pre-upload path.
Workflow
1. Clarify the document task
Pick the narrowest operation that satisfies the user:
| User intent | Reducto tool |
|---|---|
| "Read this PDF" / "OCR this packet" | parse_document |
| "Pull these fields into JSON" | extract_data |
| "Split this packet by document type" | split_document |
| "Tell me what kind of document this is" | classify_document |
| "Fill or modify this form/document" | edit_document |
| "Fetch the full result" / "This result is truncated" | get_job |
| "Show recent processing jobs" | list_jobs |
| "What params should I use?" | get_documentation |
Prefer get_documentation before using an unfamiliar endpoint, option, schema, or result field.
2. Validate access to the document
Before starting a job, confirm:
- The document URL is public, signed, or Reducto-hosted.
- The document contains no data the user is not allowed to process through Reducto.
- The user understands Reducto usage may consume pages/credits.
- For private documents, the signed URL expiration is long enough for processing.
3. Parse once, chain by job ID
For multi-step workflows, parse once and reuse jobid://<job_id>.
parse_document("https://example.com/contract.pdf") -> job_id="abc123"
extract_data("jobid://abc123", schema={...})
split_document("jobid://abc123", ...)
get_job(job_id="abc123")
This avoids re-uploading or reparsing the same document.
4. Extract with explicit schemas
For structured extraction, ask for or draft a schema with clear field names, types, and descriptions. Include citation requirements when the user needs auditability.
For invoices, a good starting schema is:
{
"vendor_name": "string",
"invoice_number": "string",
"invoice_date": "string",
"due_date": "string",
"currency": "string",
"subtotal": "number",
"tax": "number",
"total": "number",
"line_items": [
{
"description": "string",
"quantity": "number",
"unit_price": "number",
"amount": "number"
}
]
}
For contracts, collect the user's target fields first, such as parties, effective date, term, renewal, termination rights, payment terms, governing law, and unusual obligations.
5. Handle large, async, or truncated results
Reducto results can include:
job_id: save this for follow-up calls.studio_link: use this for visual inspection/debugging.usage: pages and credits consumed.next_steps: Reducto's suggested next operation.result_type: "url": callget_job(job_id=...)before reading the result.truncated: true: callget_job(job_id=...)or rerun with a narrowerpage_range.
Do not summarize a truncated or URL-backed result as complete until get_job has retrieved the full materialized result.
Safety
- Never put
REDUCTO_API_KEYin committed files, prompts, logs, or screenshots. - Do not send local private files to the hosted server unless the user explicitly authorizes a public/signed upload path.
- Do not claim extracted values are authoritative unless the output includes citations or the user accepts best-effort extraction.
- Preserve document provenance: return source URL, job ID, Studio link, page ranges, and citations when available.
- If the user asks for medical, legal, financial, or compliance conclusions, return extracted evidence and suggest human review rather than making final determinations.
Demo Prompt
Use Reducto's hosted MCP server to extract vendor, invoice number, date, total, and line items from this public invoice PDF. Return JSON with citations and the Reducto Studio link. If the result is URL-backed or truncated, call
get_jobbefore answering.
Expected Output
{
"success": true,
"source_url": "https://example.com/invoice.pdf",
"job_id": "abc123",
"studio_link": "https://studio.reducto.ai/jobs/abc123",
"usage": {
"num_pages": 3,
"credits": 3
},
"extracted_data": {
"vendor_name": "Example Vendor",
"invoice_number": "INV-1001",
"total": 1234.56,
"line_items": []
},
"citations": [],
"next_steps": "Use jobid://abc123 for follow-up extraction, split, classify, or get_job."
}
How to use extract-document-data on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add extract-document-data
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches extract-document-data from GitHub repository reducto.ai/extract-document-data and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate extract-document-data. Access the skill through slash commands (e.g., /extract-document-data) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★33 reviews- ★★★★★Harper Mehta· Dec 16, 2024
extract-document-data fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Anaya Choi· Dec 8, 2024
We added extract-document-data from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Nia Okafor· Nov 27, 2024
extract-document-data reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Aarav Malhotra· Nov 7, 2024
Registry listing for extract-document-data matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Henry Harris· Nov 3, 2024
extract-document-data has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Olivia Farah· Oct 26, 2024
extract-document-data reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Charlotte Singh· Oct 22, 2024
Solid pick for teams standardizing on skills: extract-document-data is focused, and the summary matches what you get after install.
- ★★★★★Daniel Haddad· Oct 18, 2024
Registry listing for extract-document-data matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Kofi Sharma· Sep 21, 2024
Keeps context tight: extract-document-data is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Piyush G· Sep 13, 2024
I recommend extract-document-data for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 33