Skip to main content
Tool Exposure controls how your agent’s or gateway’s tools are presented to the consuming AI. As you attach more capabilities, the number of available tools grows — Tool Exposure lets you manage that complexity.

Configuration

1

Open Settings

Agents > Select agent > Settings (or Gateways > Select gateway > Settings)
2

Find Tool Exposure

Locate the Tool Exposure section
3

Choose a Mode

Select Smart (recommended), Omni, or Individual
4

Save

Click Save

Visibility Modes

ModeTools ExposedBest For
Smart (default, recommended)3 meta-tools for progressive discoveryBalanced control and flexibility
OmniSingle omni_toolSimplest interface, maximum automation
IndividualAll tools directlyFull control, power users

How Each Mode Works

Exposes 3 meta-tools for progressive discovery:
  1. discover_tools — List available tools matching a task description
  2. get_tool_schema — Get detailed schema for a specific tool
  3. execute_tool — Run a tool with specified parameters
The AI first discovers what’s available, inspects the right tool, then executes it. This gives the AI context to make good choices without overwhelming it with every tool upfront.

Omni Mode

Exposes a single omni_tool. The AI describes what it wants in natural language, and an LLM-powered discovery layer finds and executes the right tool automatically.
Tools available: omni_tool

Request: "Search for Python tutorials"
→ Omni Tool discovers web_search
→ Extracts parameters automatically
→ Executes and returns result with metadata

Individual Mode

Exposes every tool directly. The AI sees the full list and picks which to call. Best when you have a small, well-defined set of tools or need precise control.

Confidence Scoring (Omni Mode)

In Omni mode, the discovery LLM rates match confidence (0.0–1.0):
  • 0.95+ — Very confident (clear match)
  • 0.80–0.95 — High confidence (strong match)
  • 0.70–0.80 — Moderate (passes default threshold)
  • Below 0.70 — Rejected, asks for clarification
The confidence threshold is a global setting (default: 0.7). Below the threshold, Omni Tool asks the user to clarify instead of guessing wrong.

Which Mode to Choose

ScenarioRecommended Mode
General-purpose agent with many toolsSmart
Simplest possible interface for end usersOmni
Small, well-defined tool setIndividual
Agent needs to adapt to varied requestsSmart or Omni
Maximum speed, minimal latencyIndividual
MCP gateway for developer clientsSmart or Individual

Applies to Both Agents and Gateways

Tool Exposure is configurable on both agents and MCP gateways. The behavior is the same — it controls how tools are presented to the consuming AI client.

Cost

For current pricing details, see Pricing. In Smart and Omni modes, tool discovery adds a small LLM call. You only pay for the actual tool execution.

Troubleshooting

ProblemSolution
Omni picks wrong toolMake request more specific, or switch to Smart mode
Discovery adds too much latencySwitch to Individual mode for speed-critical cases
Agent not finding toolsCheck that capabilities are attached and tools are available
Low confidence scoresRequests are ambiguous — add more detail

Next Steps