Skip to main content
The Plain backend is the default. Every tool you register is exposed directly:the LLM sees all of them and calls them by name.

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:
Each tool definition consumes tokens. With 50 tools, this can be thousands of tokens per turn.

When to Use

Use Plain when you have a small, focused API:under 20 tools:where every tool is potentially relevant at any point.
Good fit:
  • Simple servers with few tools
  • Tools that are all equally relevant at any time
  • Quick prototyping before adding structure
Bad fit:
  • 50+ tools (context bloat)
  • Workflows with ordering requirements (use stages)
  • Cost-sensitive applications (use Code or Plan)

Example

The LLM sees both tools and picks whichever is appropriate for the user’s question.