List the platform agent tools
talonic_list_agent_toolsDiscover invocable agent tools with schemas to find capabilities like SQL querying, workspace overview, or cohort discovery, then call the right one.
Instructions
List the platform's agent tool registry — every retrieval, provenance and analysis primitive the in-product Talonic agent runs on (find_data, describe_data, query_data for read-only SQL over the extracted data, get_document_markdown, workspace_overview, …) with its input schema and whether THIS credential may invoke it.
USE WHEN: you want a capability talonic_* tools do not cover directly (e.g. SQL over the structured data, a workspace overview, cohort discovery) — list here, then call talonic_invoke_agent_tool with the tool name and its args. NOT FOR: discovering fields (talonic_list_fields / talonic_find_data) or documents (talonic_search) — those are shaped for you.
ARGS: only_invocable (default true — hide tools this key cannot run), include_schemas (default true — include each tool's JSON input schema).
RETURNS: { tools[] of { name, description, impact, capability, can_invoke, input_schema? }, invocable_count, totalCount }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| only_invocable | No | Hide tools this credential cannot invoke. Default true. | |
| include_schemas | No | Include each tool's JSON input schema. Default true. |