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

推荐订阅源

雷峰网
雷峰网
爱范儿
爱范儿
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 叶小钗
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
博客园 - 司徒正美
博客园 - 【当耐特】
IT之家
IT之家

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I gave my AI agent a 2MB PDF. Here's what happened to my ...
Mark Turner · 2026-05-29 · via DEV Community

Mark Turner

Every token your agent spends on file I/O is wasted reasoning capacity.

I was building a document processing agent — the kind that reads incoming research reports, extracts key findings, and produces executive briefings. Nothing exotic. The kind of workflow thousands of teams are automating right now.

The PDF I was testing with was 2MB. Dense text. A typical industry research report.

When I measured the token cost of processing it inline, the number was 97,354 input tokens — just to get the text into Claude's context. At claude-sonnet-4-6 pricing, that's $0.29 per document. For a pipeline that processes 500 reports a month, you're looking at $150/month before your agent writes a single word of output.

That's the problem nobody talks about in the AI agent space. Everyone optimises prompt engineering and output tokens. The silent cost is input: the files, the content, the raw data you're shoving into context before the agent can do anything useful.


How the token count explodes

When you pass a document to an agent inline, one of two things happens:

Option A — Base64 encoding. You read the binary file, encode it, embed it in the prompt. A 2MB PDF in base64 is ~2.7MB of text. At roughly 3.5 characters per token, that's ~770,000 tokens before your agent has read a single word. This is catastrophic. Don't do this.

Option B — Text extraction. You extract the raw text content first (via pdftotext, PyMuPDF, or equivalent), then pass the text to the agent. Better — but a 2MB PDF with dense content still yields ~97,000 tokens of extracted text. You've paid for every word, every header, every footnote.

Either way, the document content dominates your context window, crowds out your system prompt, and you're burning money on file I/O instead of reasoning.


The alternative: specialist services via MCP

Model Context Protocol (MCP) is Anthropic's open standard for connecting AI agents to external tools and services. The key insight is simple: your agent doesn't need to contain the computation — it needs to orchestrate it.

File conversion is a perfect example. Converting a PDF to clean markdown is deterministic, CPU-bound work. It doesn't require LLM reasoning. Running it inside your agent's context window is like using a screwdriver to hammer a nail — you can, sort of, but why would you?

Here's what the same 2MB PDF workflow looks like when the agent delegates to a specialist service:

Agent token cost to process the 2MB PDF:
  ├── convert_from_url call:    ~300 tokens
  ├── get_job_status poll:      ~200 tokens  
  ├── get_download_url call:    ~200 tokens
  └── Total MCP overhead:    ~8,000 tokens

8,000 tokens vs 97,354 tokens. A 12× reduction.

The converted markdown (clean, structured, without PDF encoding artifacts) is stored externally. The agent gets back a URL. For many workflows — convert, store, route, email — the agent never needs to read the full content at all. For workflows that do need to reason over the content, the clean markdown is 40-50% smaller than the raw extracted text.

The cost difference: $0.029 vs $0.29. Ten times cheaper per document.


A concrete example

Say your agent handles incoming vendor contracts. The workflow: receive a PDF, convert to a canonical format, extract key dates and obligations, store the result, notify procurement.

Inline approach:

import anthropic, base64

client = anthropic.Anthropic()

with open("vendor_contract.pdf", "rb") as f:
    pdf_b64 = base64.b64encode(f.read()).decode()

# This burns ~770,000 tokens just loading the file
response = client.messages.create(
    model="claude-sonnet-4-6",
    max_tokens=4096,
    messages=[{
        "role": "user",
        "content": [
            {"type": "text", "text": "Extract key dates, parties, and obligations from this contract."},
            {
                "type": "document",
                "source": {
                    "type": "base64",
                    "media_type": "application/pdf",
                    "data": pdf_b64
                }
            }
        ]
    }]
)

Cost: ~$2.31 in input tokens for a 2MB contract, before any output.

MCP approach (with Botverse):

Set up the MCP server once in your Claude Desktop config or agent runtime:

{
  "mcpServers": {
    "botverse": {
      "url": "https://botverse.cloud/mcp?token=YOUR_TOKEN"
    }
  }
}

Then your agent prompt becomes:

You have access to the Botverse MCP tools.

A new vendor contract has arrived at:
https://contracts.yourcompany.com/incoming/vendor_contract_2026.pdf

1. Convert it to markdown using convert_from_url
2. Once converted, retrieve the content and extract:
   - Contract parties (names and roles)
   - Effective date and term
   - Payment obligations with amounts and dates
   - Key termination conditions
3. Format the output as structured JSON

What happens:

Tool call: convert_from_url(url, "md")
  → job_id: "job_abc123", estimated_cost: $0.05

Tool call: get_job_status("job_abc123")  
  → status: "complete"

Tool call: get_download_url("job_abc123")
  → download_url: "https://cdn.botverse.cloud/..."

The agent fetches the clean markdown (~35,000 tokens for the same contract), extracts the structured data, and produces the output. Total input tokens: ~37,000. Total cost including the $0.05 Botverse job: ~$0.16 vs $2.31.

For a pipeline processing 500 contracts a month: $80 vs $1,155.


When the agent doesn't need to read the file at all

The pattern gets even more powerful when the agent's job is transformation, not comprehension.

Consider: "Convert all this week's board meeting notes from DOCX to PDF and upload them to the board portal."

The agent doesn't need to read the content. It needs to:

  1. Get a list of DOCX files (from Drive, S3, wherever)
  2. For each: call convert_from_url(url, "pdf"), get the output URL
  3. Upload each PDF to the board portal

Total agent token cost per document: ~1,500 tokens (three MCP calls). The files can be arbitrarily large — 100MB, 1GB — the token cost doesn't change.

This is the correct architecture for file-processing agents. The agent reasons. Specialist services compute.


The underlying principle

There's an argument that LLM context windows are getting so large that this doesn't matter anymore. Gemini 2.0 Pro has 2M tokens. Claude has 200K. Just throw everything in.

This argument has two problems.

Cost. Large context windows are expensive. 97,354 input tokens at claude-sonnet-4-6 is $0.29. At claude-opus-4-7 it's over $1.00. If your agent processes high volumes, you're paying a huge premium for compute you don't need.

Performance. LLMs degrade at extracting specific information from large, noisy contexts. The "lost in the middle" problem is well-documented — models struggle to attend to relevant content buried in long inputs. A clean, well-structured markdown document is easier for a model to reason about than raw extracted PDF text with page numbers, headers, and encoding artifacts embedded throughout.

The right mental model: every token your agent spends on file I/O is reasoning capacity it can't spend on your actual problem.


Getting started

Botverse is an MCP-native cloud API for file processing — video transcoding and document conversion, built for AI agents.

  • Sign up at botverse.cloud — $2.50 minimum top-up, no monthly fees
  • Document conversion: $0.05/job (md, html, docx, pdf, rst, txt, xlsx)
  • Video transcoding: $0.25/job base (mp4, webm, ProRes, mp3, gif)
  • Add the MCP server in Claude Desktop in 30 seconds: Smithery search "Botverse"

The benchmark numbers in this article came from processing a 2MB research PDF in both modes using claude-sonnet-4-6. https://botverse.cloud/benchmark


Have a different approach to token-efficient file processing? I'd love to hear it in the comments.