find_tools, then call it
with type + params.
Providers
Common operations
- Web search
- News search (
getNewsSearch) - Image search (
getImageSearch) - LLM context (
getLlmContext) - Local POIs and descriptions (
getLocalPois,getLocalDescriptions)
Example
1
Discover
find_tools("search the web for the latest Claude news")2
Describe
describe_tool("Brave/getWebSearch") → params + per-call cost3
Execute
execute_tool("Brave/getWebSearch", { query: "Claude news" })The calling model
Discover → describe → execute, explained.