Tools & Automation
Give your assistant the ability to act - browse the web, call APIs, or run automations.
Tools & Automation
A standard LLM is limited to text generation. By adding Tools, you give your agent the ability to interact with the world: search the internet, browse live websites, execute code, or call external APIs.
OpenAgent supports two primary ways to extend an agent's capabilities.
Built-in Tools (Fastest)
The fastest way to add capabilities. These tools are pre-packaged with OpenAgent and require zero configuration.
Web Search, Browser, or Shell.Example: "Search the latest news about OpenAgent and summarize it."
Security Note: Tools like Shell or Browser can perform actions on your host machine. Only enable them in trusted, sandboxed environments.
MCP (Model Context Protocol)
OpenAgent supports MCP, an open standard for connecting AI models to external data and tools. This is the recommended way to connect your own databases or APIs.
Which one should I choose?
| Method | Best for | Setup Effort |
|---|---|---|
| Built-in | General web search, simple browsing, or shell tasks | Low |
| MCP | Connecting your own proprietary APIs or databases | Medium |