---
title: "Reading & Delivery"
description: "How content leaves Byline and reaches its readers — the typed client SDK, the server-function transport surface, future HTTP transports, markdown and llms.txt for agents, an MCP server, a pluggable search/retrieval seam, and the caching strategy that ties them together."
canonical: "https://bylinecms.app/fr/docs/reading-and-delivery"
locale: "fr"
collection: "docs"
updated: "2026-07-21T20:00:47.701Z"
---

# Reading & Delivery

How content leaves Byline and reaches its readers — the typed client SDK, the server-function transport surface, future HTTP transports, markdown and llms.txt for agents, an MCP server, a pluggable search/retrieval seam, and the caching strategy that ties them together.

Modeling content is only half the job; the other half is getting it out to the things that read it — browsers, other services, and increasingly language models and agents. This section covers every way content leaves Byline and how to serve it efficiently.

- [Client SDK](/docs/reading-and-delivery/client-sdk) — `@byline/client`, the typed, DSL-style API for querying and writing documents from outside the admin UI.
- [Routing & API](/docs/reading-and-delivery/routing-api) — the current transport surface (TanStack Start server functions) and the boundary where a stable HTTP API becomes worthwhile.
- [Transports](/docs/reading-and-delivery/transports) **(planned)** — how Byline intends to layer framework-agnostic logic under host-specific bindings so the same operations can be exposed over different transports.
- [Markdown Export](/docs/reading-and-delivery/markdown-export) — one-way Lexical-to-markdown rendering, the `.md` URL surface, and `llms.txt` for agent consumers.
- [MCP Server](/docs/reading-and-delivery/mcp) **(planned)** — exposing Byline content to AI agents over the Model Context Protocol.
- [Caching](/docs/reading-and-delivery/caching) — CDN edge caching, invalidation strategies, and the optional in-memory data cache.
- [Search & Retrieval](/docs/reading-and-delivery/search) — the pluggable `SearchProvider` seam (Postgres full-text search built in, vector / hybrid as external drivers), shipped collection/zone search, hydration, and post-ranking authorization, exposed through the Client SDK surfaces developers build site search on.
