search
Search across everything the caller can already touch: workspace names, row cell values, and doc sections/paragraphs. Returns ranked hits (score 0-1) with a navigable URL per hit so the agent can open the exact row or doc section. Access-gated; never returns hits from workspaces the caller can't open. Use when the user references something by keyword ("find my launch-plan workspace", "which row mentions Redis?"). Faster than listing workspaces and iterating.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Search query. Case-insensitive substring match. | |
| kind | No | Narrow to one surface. 'all' (default) searches workspace names + row cells + doc sections. 'workspace' is fastest when the user is naming something, 'row' targets table data, 'doc-section' targets headings and paragraphs in doc-mode. | |
| limit | No | Max hits to return (default 20, max 100). | |
| offset | No | Hits to skip for pagination (default 0). |