Glotto documentation
Everything you need to turn an API spec into SDKs, docs, and an MCP server. Get started with your first glotto generate.
Every SDK, same error model
import { ApiError } from 'glotto-sdk';
try {
// any client call
} catch (err) {
if (err instanceof ApiError) {
console.error(err.status, err.toString());
}
}regenerated + byte-diffed in CI a0f8af4b462c
Get started
Concepts
- The Glotto IR
- The pipeline
- Drift detection
- Breaking-change detection
- Idempotency keys
- The verification report
- Endpoint migration
Guides
- The MCP server
- The generated docs site
- Deployment & single-tenant
- Multi-VCS release flow
- Custom code
- Migrate from Stainless
- How Glotto compares
- Connect a VCS provider
- The generated CLI
- Migrate from Fern
- The API-surface graph
- The generated Terraform provider
- The published spec repo
Using the SDKs
- Authentication
- Retries & timeouts
- Pagination
- Errors
- Idempotency
- Streaming
- Webhooks
- Polling
- Telemetry hooks
- Agent primitives
- Forward compatibility
- File uploads & downloads