AI / CrewAI Interview Questions
What is a Tool in CrewAI?
A Tool in CrewAI is an extension that gives an agent an additional capability beyond generating text, such as searching the web, scraping a website, or reading a file.
- CrewAI ships with a rich set of built-in tools, including SerperDevTool for web search, ScrapeWebsiteTool, and FileReadTool
- Custom tools can be created quickly with the @tool decorator, or with more control by subclassing BaseTool
- CrewAI also supports the Model Context Protocol, letting agents connect to external MCP tool servers
Tools are what let an agent's reasoning actually translate into real actions, rather than staying purely conversational.
More Related questions...