Discover CrewAI’s extensive library of 40+ tools to supercharge your AI agents
CrewAI provides an extensive library of pre-built tools to enhance your agents’ capabilities. From file processing to web scraping, database queries to AI services - we’ve got you covered.
from crewai_tools import FileReadTool, SerperDevTool# Add tools to your agentagent = Agent( role="Research Analyst", tools=[FileReadTool(), SerperDevTool()], # ... other configuration)
You can set a maximum usage count for a tool to prevent it from being used more than a certain number of times.
By default, the max usage count is unlimited.
Copy
Ask AI
from crewai_tools import FileReadTooltool = FileReadTool(max_usage_count=5, ...)
Ready to explore? Pick a category above to discover tools that fit your use case!