Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

<div align="left">

> **⚠️ WARNING: This repository is deprecated. The updated and actively maintained version of CrewAI Tools can be found here:** > [https://github.com/crewAIInc/crewAI/tree/main/lib/crewai-tools](https://github.com/crewAIInc/crewAI/tree/main/lib/crewai-tools)

# CrewAI Tools

Empower your CrewAI agents with powerful, customizable tools to elevate their capabilities and tackle sophisticated, real-world tasks.
Expand Down Expand Up @@ -105,6 +107,7 @@ with MCPServerAdapter(serverparams) as tools:
crew = Crew(..., agents=[agent], tasks=[task])
crew.kickoff(...)
```

For an SSE based MCP server:

```python
Expand Down Expand Up @@ -145,7 +148,7 @@ try:
crew.kickoff(...)

# ** important ** don't forget to stop the connection
finally:
finally:
mcp_server_adapter.stop()
```

Expand All @@ -167,7 +170,7 @@ try:
crew.kickoff(...)

# ** important ** don't forget to stop the connection
finally:
finally:
mcp_server_adapter.stop()
```

Expand All @@ -179,8 +182,8 @@ Always make sure that you trust the MCP Server before using it. Using an STDIO s

#### Limitations

* At this time we only support tools from MCP Server not other type of primitives like prompts, resources...
* We only return the first text output returned by the MCP Server tool using `.content[0].text`
- At this time we only support tools from MCP Server not other type of primitives like prompts, resources...
- We only return the first text output returned by the MCP Server tool using `.content[0].text`

---

Expand Down
Loading