mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 15:48:29 +00:00
* docs(cli): document device-code login and config reset guidance; renumber sections * docs(cli): fix duplicate numbering (renumber Login/API Keys/Configuration sections) * docs: Fix webhook documentation to include meta dict in all webhook payloads - Add note explaining that meta objects from kickoff requests are included in all webhook payloads - Update webhook examples to show proper payload structure including meta field - Fix webhook examples to match actual API implementation - Apply changes to English, Korean, and Portuguese documentation Resolves the documentation gap where meta dict passing to webhooks was not documented despite being implemented in the API. * WIP: CrewAI docs theme, changelog, GEO, localization * docs(cli): fix merge markers; ensure mode: "wide"; convert ASCII tables to Markdown (en/pt-BR/ko) * docs: add group icons across locales; split Automation/Integrations; update tools overviews and links
61 lines
2.1 KiB
Plaintext
61 lines
2.1 KiB
Plaintext
---
|
|
title: "Overview"
|
|
description: "Automate workflows and integrate with external platforms and services"
|
|
icon: "face-smile"
|
|
mode: "wide"
|
|
---
|
|
|
|
These tools enable your agents to automate workflows, integrate with external platforms, and connect with various third-party services for enhanced functionality.
|
|
|
|
## **Available Tools**
|
|
|
|
<CardGroup cols={2}>
|
|
<Card title="Apify Actor Tool" icon="spider" href="/en/tools/automation/apifyactorstool">
|
|
Run Apify actors for web scraping and automation tasks.
|
|
</Card>
|
|
|
|
<Card title="Composio Tool" icon="puzzle-piece" href="/en/tools/automation/composiotool">
|
|
Integrate with hundreds of apps and services through Composio.
|
|
</Card>
|
|
|
|
<Card title="Multion Tool" icon="window-restore" href="/en/tools/automation/multiontool">
|
|
Automate browser interactions and web-based workflows.
|
|
</Card>
|
|
|
|
<Card title="Zapier Actions Adapter" icon="bolt" href="/en/tools/automation/zapieractionstool">
|
|
Expose Zapier Actions as CrewAI tools for automation across thousands of apps.
|
|
</Card>
|
|
</CardGroup>
|
|
|
|
## **Common Use Cases**
|
|
|
|
- **Workflow Automation**: Automate repetitive tasks and processes
|
|
- **API Integration**: Connect with external APIs and services
|
|
- **Data Synchronization**: Sync data between different platforms
|
|
- **Process Orchestration**: Coordinate complex multi-step workflows
|
|
- **Third-party Services**: Leverage external tools and platforms
|
|
|
|
```python
|
|
from crewai_tools import ApifyActorTool, ComposioTool, MultiOnTool
|
|
|
|
# Create automation tools
|
|
apify_automation = ApifyActorTool()
|
|
platform_integration = ComposioTool()
|
|
browser_automation = MultiOnTool()
|
|
|
|
# Add to your agent
|
|
agent = Agent(
|
|
role="Automation Specialist",
|
|
tools=[apify_automation, platform_integration, browser_automation],
|
|
goal="Automate workflows and integrate systems"
|
|
)
|
|
```
|
|
|
|
## **Integration Benefits**
|
|
|
|
- **Efficiency**: Reduce manual work through automation
|
|
- **Scalability**: Handle increased workloads automatically
|
|
- **Reliability**: Consistent execution of workflows
|
|
- **Connectivity**: Bridge different systems and platforms
|
|
- **Productivity**: Focus on high-value tasks while automation handles routine work
|