Conteúdo
O que o agente realmente recebe?
Uma requisição GET com o header Accept do MAKO retorna um documento estruturado: frontmatter YAML com metadados tipados, seguido de um corpo markdown limpo. 245 tokens em vez de 4.125 — uma redução de 94%. Alternativamente, agentes podem extrair conteúdo MAKO diretamente de um elemento script no HTML — sem necessidade de negociação de conteúdo.
<div class="product-page">
<nav><!-- 800 tokens --></nav>
<div class="sidebar"><!-- 600 tokens --></div>
<div class="main-content">
<h1>Running Shoes Pro</h1>
<span class="price">$129.99</span>
<p>Lightweight performance shoe...</p>
</div>
<div class="recommendations"><!-- 900 tokens --></div>
<footer><!-- 500 tokens --></footer>
<!-- 1,325 tokens of actual content
buried in 4,125 tokens total -->
</div>GET /products/running-shoes HTTP/1.1
Accept: text/mako+markdown
HTTP/1.1 200 OK
Content-Type: text/mako+markdown
---
mako: "1.0"
type: product
entity: Running Shoes Pro
tokens: 245
language: en
updated: 2026-02-15T10:00:00Z
summary: >-
Lightweight running shoe with responsive
cushioning. $129.99 at Example Store.
---
# Running Shoes Pro
Lightweight performance running shoe with
responsive ZoomX cushioning and breathable
mesh upper.
**Price:** $129.99
**Sizes:** 7-13
**Colors:** Black, White, Red
# Also available via HTML <script> embedding
# without content negotiation