List all docs
list_docsBrowse all available documents in the ProsodyAI documentation server. Filter by section like docs, sdks, recipes, or api to find specific content quickly.
Instructions
List every document in this server. Useful for browsing without a search query.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| section | No | Filter to a single section. |
Implementation Reference
- src/lib/content.ts:145-148 (helper)Helper function listEntries that returns all content entries, optionally filtered by section.
export async function listEntries(section?: ContentSection): Promise<ContentEntry[]> { const all = await loadContent(); return section ? all.filter((e) => e.section === section) : all; } - src/lib/content.ts:13-13 (helper)Type definition for ContentSection used by list_docs input schema.
export type ContentSection = "docs" | "sdks" | "recipes" | "api";