Problem 1 to Fix 1
Claude token usage was way higher than it should have been.
M.P. was hitting Claude budgets faster than he would in a local workflow because early Respira responses were too verbose for common read and edit loops.
-
What M.P. experienced
Verbose MCP responses were burning through Claude API budgets faster than local workflows.
-
Why it happened
Early Respira favored completeness and full payload extraction over efficiency and response discipline.
-
What we shipped
Compact, token-efficient MCP responses as the default path, with discovery plus patch flows instead of full payload dumps.
-
Benefit
Typical WordPress editing workflows now land in the 60-70% token reduction range.
Before / after payload comparison
Same kind of edit, less junk in the wire
{
"page": {
"id": 1842,
"title": "Homepage",
"status": "draft",
"content": {
"rendered": "<section class=\"hero\">...full HTML...</section>",
"raw": "<!-- wp:group --> ... <!-- /wp:group -->"
},
"builder": {
"name": "elementor",
"payload": { "sections": [...], "widgets": [...], "styleTokens": [...] },
"hash": "0f3b4e..."
},
"meta": { "seo": "...", "customCss": "...", "template": "default" },
"links": { "edit": "...", "preview": "...", "approvals": "..." }
}
} {
"page": {
"id": 1842,
"title": "Homepage",
"status": "draft",
"builder": "elementor"
},
"summary": "Working copy ready. Three hero widgets updated.",
"next_step": "Approve in Respira -> Page Approvals",
"site": {
"id": "client-main",
"name": "Client main",
"url": "https://client.example"
}
}