惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
C
Check Point Blog
Vercel News
Vercel News
Y
Y Combinator Blog
G
Google Developers Blog
P
Proofpoint News Feed
WordPress大学
WordPress大学
MongoDB | Blog
MongoDB | Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
N
Netflix TechBlog - Medium
L
LangChain Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
博客园_首页
B
Blog RSS Feed
The Cloudflare Blog
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security Blog

Inside Nutrient

A guide to the invisible work behind documents Introducing Nutrient Documents for Salesforce: Native document generation and signing Document AI vs. traditional OCR: Choosing between OCR, AI, and hybrid pipelines PDF SDK compliance and security evaluation checklist for enterprise teams (2026) Invariant Corp replaces paper processes with Nutrient Workflow and scales without limits What is process mapping? A complete guide Nutrient vs. Conga Composer for Salesforce document generation (2026) Document routing: How to automate document distribution The CTO’s AI playbook: Why accountability architecture beats orchestration Compliance workflow automation: Why built-in compliance is table stakes Workflow diagrams: Examples, symbols, and how to build one that actually runs Digital forms: Replace paper forms with automated workflows Approval workflow software: How to automate approvals Why document-centric automation is different The CEO’s AI playbook: Why decision architecture beats model selection Nutrient SDK product updates for Q1 2026 PDF redaction verification: How to prove sensitive data is permanently removed What is a VPAT? The complete guide to accessibility conformance reports What is PDF/UA? The accessible PDF standard explained Salesforce eSignatures: Generate, sign, and track documents in one flow Online document viewer: Options, tradeoffs, and how to embed one Document viewer for web apps: React, Vue, Angular (2026) Best document viewers in 2026: A buyer’s guide How to edit a PDF in Python: Add text, images, and annotations Nutrient advances Workflow platform with agentic AI for enterprise-grade speed and consistency in document-heavy operations How to create a Salesforce quote template from opportunity data The business case for accessibility: Five ways it drives enterprise value Python PDF library comparison (2026): 7 libraries for developers Why your AI agent hallucinates PDF table data PDF.js limitations: When to upgrade to a commercial PDF SDK
Automating tax filing with AI: Claude Desktop meets Nutri...
Nick Winder · 2025-07-31 · via Inside Nutrient

Table of contents

    Automating tax filing with AI: Claude Desktop meets Nutrient DWS Processor

    Let’s be honest: Tax season isn’t fun. For me, it’s always been a slog of hunting down receipts, converting them to the right format, renaming files, extracting totals, and putting everything into some kind of spreadsheet that hopefully makes sense later. It’s tedious, error-prone, and honestly just not the best use of time.

    This year, I decided to do things a little differently, and it turned into a super satisfying use of AI!

    The goal: Do less, get more done

    Instead of spending hours organizing receipts manually, I wanted to offload the whole process to a large language model (LLM) — Claude in this case — connected to our new Nutrient DWS MCP Server, powered by the Nutrient DWS Processor API.

    Here’s what I needed the system to do:

    1. Convert all my receipts (PDFs, JPGs, PNGs, etc.) into PDF format.
    2. Standardize the filenames so I could actually find things later.
    3. Extract totals from each receipt and compile them into a CSV.
    4. Perform currency conversions where needed.
    5. Do all of the above without me writing a line of code.

    Get started with Nutrient DWS Processor API today and receive 50 free credits monthly! Perfect for watermark-free document processing targeting many use cases.

    Setting things up

    First, I set up Claude Desktop with Nutrient DWS MCP Server. You can do that for yourself using the npm package and instructions(opens in a new tab).

    I dropped my receipts into the Claude sandbox and gave a prompt like:

    “Please process all files in the sandbox folder. Convert them to PDF, rename them with the correct date and company name, and output them to a directory named normalized. Then extract the total amount from each, and create a CSV summary.”

    Behind the scenes, Claude used two key MCP integrations:

    This combination made it possible to orchestrate the entire workflow through natural language — no scripts, no APIs, just intent.

    What actually happened

    The process was iterative and surprisingly smooth. Claude:

    • Scanned the sandbox and cataloged files and directories.
    • Created a new folder (/normalized) for output.
    • Converted everything to PDF (handling images, old scans, and random formats).
    • Renamed files with the correct structure: YYYY-MM-DD_CompanyName_Receipt.pdf
    • Logged each processed file in a tracking script.
    • Extracted totals and wrote them into a CSV.

    Along the way, I hit a couple of minor snags:

    • Some receipts were labeled as “invoices” and got skipped initially.
    • A few dates were hallucinated or misread.
    • Company names were missing from some filenames.

    But the beauty of using Claude here is that I could just say:

    “Hey, some of the dates are off — go back and extract them from the files.”

    And it did.

    Same for the company names. I asked it to extract the vendor names from the content, and it renamed the files accordingly, even updating the CSV summary.

    The end result

    By the end of it, I had:

    • A /normalized folder with cleanly named, uniformly formatted PDF receipts.
    • A tidy CSV file with totals, dates, and company names.
    • A lot more time to do literally anything else.

    Here’s a quick look at the final structure:

    sandbox/

    └── normalized/

    ├── 2024-02-15_CoffeeCo_Receipt.pdf

    ├── 2024-02-17_AirlineTicket_Receipt.pdf

    └── receipts_summary.csv

    Why this matters

    Could I have written a Python script to do all of this? Sure. Could I have asked Claude to generate code for me and run it manually? Also yes.

    But this experience was different.

    With DWS MCP Server and DWS Processor API handling all the actual document logic, and Claude interpreting my goals through plain language, I was able to:

    • Automate a complex, multistep task with no code.
    • Iterate and refine the workflow through conversation.
    • Trust that file conversions and data extraction were done reliably.

    It’s one of the first times I felt like a real document automation system was accessible without needing developer-level confidence.

    What else could you do?

    This kind of natural language-powered automation isn’t just useful for receipts. It could easily extend to:

    • Contract workflows — Batch sign, convert to PDF/A, or watermark documents.
    • Onboarding — Extract key fields from forms, rename, and categorize.
    • Finance — Compile invoice totals across months, normalize naming, and run audits.
    • Archiving — Convert files, redact sensitive information, and create summaries.

    If you’ve got documents, chances are there’s a promptable workflow waiting to be discovered.

    Try it yourself

    If you want to give this a try:

    1. Get an API key(opens in a new tab) for the Nutrient DWS Processor API.
    2. Install Claude Desktop and configure Nutrient DWS MCP Server(opens in a new tab)
    3. Drop your documents into the sandbox and start prompting.

    The setup is minimal, and the payoff can be massive.

    Do you have a similar use case, or are you thinking about automating your document stack? Let Claude and Nutrient do boring document stuff. And feel free to reach out to us to learn more.

    Explore related topics

    Try for free Ready to get started?

    Related Cloud articles

    Explore more