You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 10, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@
4
4
5
5
<divalign="left">
6
6
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
+
7
9
# CrewAI Tools
8
10
9
11
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:
105
107
crew = Crew(..., agents=[agent], tasks=[task])
106
108
crew.kickoff(...)
107
109
```
110
+
108
111
For an SSE based MCP server:
109
112
110
113
```python
@@ -145,7 +148,7 @@ try:
145
148
crew.kickoff(...)
146
149
147
150
# ** important ** don't forget to stop the connection
148
-
finally:
151
+
finally:
149
152
mcp_server_adapter.stop()
150
153
```
151
154
@@ -167,7 +170,7 @@ try:
167
170
crew.kickoff(...)
168
171
169
172
# ** important ** don't forget to stop the connection
170
-
finally:
173
+
finally:
171
174
mcp_server_adapter.stop()
172
175
```
173
176
@@ -179,8 +182,8 @@ Always make sure that you trust the MCP Server before using it. Using an STDIO s
179
182
180
183
#### Limitations
181
184
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`
0 commit comments