Setup
How It Works
The LLM receives the full list of tools with their names, descriptions, and parameter schemas. It picks one, provides arguments, and Concierge routes the call to your function.What the LLM Sees
For a server with 3 tools, the LLM’s tool list looks like:When to Use
Good fit:- Simple servers with few tools
- Tools that are all equally relevant at any time
- Quick prototyping before adding structure
- 50+ tools (context bloat)
- Workflows with ordering requirements (use stages)
- Cost-sensitive applications (use Code or Plan)