The Engine ships with aDocumentation Index
Fetch the complete documentation index at: https://septemberai.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
web_search platform tool that the agent can
call to look up information on the open web. It uses Brave Search by
default, with Tavily as fallback.
When the agent uses it
The agent reaches forweb_search when:
- The question requires recent information (events, prices, releases) the model wouldn’t know from training.
- The question involves a niche topic or named entity not well-covered by general training.
- The user explicitly asks the agent to look something up.
Configuration
Two environment variables:| Name | Required | Default | Purpose |
|---|---|---|---|
BRAVE_API_KEY | for Brave path | — | Brave Search API key. Free tier: 2000 queries/month. |
TAVILY_API_KEY | for fallback | — | Tavily API key. Free tier: 1000 queries/month. |
web_search tool is registered but returns an
error. The agent will surface “I can’t search the web — the search
tool isn’t configured.”
What the tool returns
A search returns a list of results:web_fetch tool, if configured).
Quotas
Brave’s free tier gives 2000 queries/month. For an active agent, expect that to last 1–2 weeks. Either:- Upgrade Brave’s tier.
- Cache aggressively at the application layer (same query within an hour returns the cached result).
- Use Tavily as primary instead of fallback.
Pitfalls
- Searches that should have been memory lookups. If the agent is searching for the user’s own data, that’s a sign retrieval from the brain isn’t surfacing what it should. Look at memory writes during the relevant past sessions.
- Searches that should have been a known URL fetch. “Find the
Anthropic docs” → search → “Read the first result” is wasteful. Add
a small
docs_searchtool that goes to known doc sites directly. - Cascading searches. The agent searches, reads the first result, searches again from the result. Five searches deep, you’ve spent significant tokens. Cap the depth in the agent’s system prompt.
See also
- Defining tools — adding your own search tool for a specialized domain.
- Environment variables — the API key vars.

