codewiki_read_contents
Retrieve documentation from a GitHub repository's Google CodeWiki. Optionally specify a section title to get only that section's content, with pagination support for full wiki content.
Instructions
View documentation about a GitHub repository from Google CodeWiki.
Without section_title, returns the full wiki content (may be truncated).
With section_title, returns just that section's content.
Use codewiki_read_structure first to see available sections.
Pagination (when section_title is empty):
offset— section index to start from (default 0).limit— max sections per response (default 5). The response includeshas_moreandnext_offsetwhen more sections are available, so you can call again to continue.
Response size: 2–10 KB per section, 5–30 KB for paginated full page. Cached for 5 minutes — repeated calls are instant.
Rate limit: max 10 calls per 60 s per repo URL. Duplicate concurrent calls are automatically deduplicated.
Args: repo_url: Full repository URL (e.g. https://github.com/facebook/react) or shorthand owner/repo (e.g. facebook/react). Bare keywords (e.g. 'react') are auto-resolved with interactive disambiguation. section_title: Optional. Title (or partial title) of a specific section to retrieve. If empty, returns the full wiki. offset: Section index to start from (0-based, default 0). limit: Maximum sections to return (default 5, max 50).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| repo_url | Yes | ||
| section_title | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |