Opus 4.7 Token Efficiency: German Prompts Burn Up to 2x Tokens vs English

Claude's tokenizer has a known language skew, and a recent post on r/ClaudeAI demonstrates the real-world impact of using non-English languages with the Opus 4.7 model.
The Problem
A Pro subscriber ran a stock analysis prompt (forecasting The Trade Desk, Coreweave, Cloudflare) first in English, then in German. Results:
- English (Opus 4.7 Extended): consumed 37% of session tokens
- English (Opus 4.6): 33%
- English (Sonnet): ~28%
- German (Opus 4.7): 100% in seconds
The same prompt in German with the same model exhausted the entire session limit almost instantly.
Why It Happens
Claude tokenizes text. English averages ~1 token per 0.75 words; German averages ~1 token per 0.5 words — sometimes worse. Compound nouns like Aktienmarktanalyse split into more tokens than stock market analysis, and umlauts plus lower training-data coverage inflate counts. For equivalent semantic content, a German prompt + response can consume 1.5× to 2× the tokens of English.
Workarounds
The model itself suggests two mitigations:
- Prompt in German but ask for responses in English — e.g., spreadsheet labels stay English while conversation remains German
- Ask the model to be terser to reduce output token count
Anthropic is aware of the multilingual token-cost issue, but it's a structural property of the tokenizer — not something that can be patched client-side.
Takeaway
If you're using Claude in a language other than English and hitting session limits, this is likely why. For heavy workflows (tool calls, web searches, long outputs), consider switching to English for the output to conserve tokens.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code IDE Extension Fails to Load on Windows – Status Update
An official status update reports that the Claude Code IDE extension is unable to load on Windows as of 2026-05-08T22:32:19Z. Track progress and resolution via the status page.

Mercor Breach: 4TB of Voice Samples + IDs Stolen – What Attackers Can Do Now
4TB of voice recordings paired with government IDs stolen from 40,000 Mercor contractors. Attackers can clone voices from 15 seconds of clean audio and bypass bank voiceprint verification, deepfake calls, and insurance fraud.

NVIDIA Vera CPU Launched for Agentic AI Workloads
NVIDIA has launched the Vera CPU, a processor designed specifically for agentic AI and reinforcement learning workloads, claiming 50% faster performance and twice the efficiency compared to traditional rack-scale CPUs.

Claude-Code v2.1.105 Release: Worktree Improvements, Plugin Monitors, and UI Fixes
Claude-Code v2.1.105 adds a path parameter to the EnterWorktree tool for switching to existing worktrees, introduces background monitor support for plugins via a monitors manifest key, and fixes 30+ issues including UI display problems, MCP server handling, and terminal compatibility.