Documentation
| Endpoint | Scope | Permission | What it does |
|---|---|---|---|
GET /docs |
read | — | List the documentation pages this deployment serves |
GET /docs/{slug} |
read | — | Read one page as markdown |
Read-only, and the same content the docs site renders — SDK guides, module references, integration setup, this API reference. The API serves the markdown source rather than HTML, because that is what an agent wants to paste.
GET /docs
{ "data": [{ "slug": "sdk/node", "title": "@saaspro/node", "bytes": 6104 }], "nextCursor": null }
GET /docs/sdk/node
{ "slug": "sdk/node", "title": "@saaspro/node", "markdown": "# @saaspro/node\n\n…" }
A slug is up to five lowercase segments. README.md is served as index. The
MCP server exposes the same pages as saaspro://docs/{slug} resources.