Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 62f4d7e

Browse files
authored
docs: update README to indicate repository deprecation and provide link to the maintained version (#486)
1 parent e7a182a commit 62f4d7e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
<div align="left">
66

7+
> **⚠️ 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)
8+
79
# CrewAI Tools
810

911
Empower your CrewAI agents with powerful, customizable tools to elevate their capabilities and tackle sophisticated, real-world tasks.
@@ -105,6 +107,7 @@ with MCPServerAdapter(serverparams) as tools:
105107
crew = Crew(..., agents=[agent], tasks=[task])
106108
crew.kickoff(...)
107109
```
110+
108111
For an SSE based MCP server:
109112

110113
```python
@@ -145,7 +148,7 @@ try:
145148
crew.kickoff(...)
146149

147150
# ** important ** don't forget to stop the connection
148-
finally:
151+
finally:
149152
mcp_server_adapter.stop()
150153
```
151154

@@ -167,7 +170,7 @@ try:
167170
crew.kickoff(...)
168171

169172
# ** important ** don't forget to stop the connection
170-
finally:
173+
finally:
171174
mcp_server_adapter.stop()
172175
```
173176

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

180183
#### Limitations
181184

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

185188
---
186189

0 commit comments

Comments
 (0)