Skip to content

Commit 80014b3

Browse files
authored
Merge pull request #4554 from mneedham/even-moar-mcp
crewai
2 parents 5da79c6 + 2ac3da7 commit 80014b3

File tree

14 files changed

+953
-27
lines changed

14 files changed

+953
-27
lines changed

docs/use-cases/AI_ML/MCP/ai_agent_libraries/agno.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ You can run the following steps either from your Python REPL or via script.
3333
Install the Agno library by running the following commands:
3434

3535
```python
36-
!pip install -q --upgrade pip
37-
!pip install -q agno
38-
!pip install -q ipywidgets
36+
pip install -q --upgrade pip
37+
pip install -q agno
38+
pip install -q ipywidgets
3939
```
4040

4141
## Setup credentials {#setup-credentials}
@@ -53,7 +53,7 @@ Enter Anthropic API Key: ········
5353

5454
:::note Using another LLM provider
5555
If you don't have an Anthropic API key, and want to use another LLM provider,
56-
you can find the instructions for setting up your credentials in the [DSPy docs](https://dspy.ai/#__tabbed_1_1)
56+
you can find the instructions for setting up your credentials in the [Agno docs](https://docs.agno.com/concepts/models/introduction)
5757
:::
5858

5959
Next, define the credentials needed to connect to the ClickHouse SQL playground:

docs/use-cases/AI_ML/MCP/ai_agent_libraries/claude-agent-sdk.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ You can run the following steps either from your Python REPL or via script.
3333
Install the Claude Agent SDK library by running the following commands:
3434

3535
```python
36-
!pip install -q --upgrade pip
37-
!pip install -q claude-agent-sdk
38-
!pip install -q ipywidgets
36+
pip install -q --upgrade pip
37+
pip install -q claude-agent-sdk
38+
pip install -q ipywidgets
3939
```
4040

4141
## Setup credentials {#setup-credentials}

docs/use-cases/AI_ML/MCP/ai_agent_libraries/crewai.md

Lines changed: 259 additions & 0 deletions
Large diffs are not rendered by default.

docs/use-cases/AI_ML/MCP/ai_agent_libraries/dspy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ This example can be found as a notebook in the [examples repository](https://git
3434
Run the following commands using `pip` to install the required libraries:
3535

3636
```shell
37-
!pip install -q --upgrade pip
38-
!pip install -q dspy
39-
!pip install -q mcp
37+
pip install -q --upgrade pip
38+
pip install -q dspy
39+
pip install -q mcp
4040
```
4141

4242
## Setup credentials {#setup-credentials}

docs/use-cases/AI_ML/MCP/ai_agent_libraries/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@ doc_type: 'guide'
2020
| [How to build a SlackBot agent using ClickHouse MCP Server.](/use-cases/AI/MCP/ai-agent-libraries/slackbot) | Learn how to build a SlackBot agent that can interact with ClickHouse MCP Server. |
2121
| [How to build an AI Agent with Agno and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/agno) | Learn how build an AI Agent with Agno and the ClickHouse MCP Server |
2222
| [How to build an AI Agent with Chainlit and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/chainlit) | Learn how to use Chainlit to build LLM-based chat apps together with the ClickHouse MCP Server |
23+
| [How to build an AI Agent with Claude Agent SDK and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/claude-agent-sdk) | Learn how build an AI Agent with Claude Agent SDK and the ClickHouse MCP Server |
2324
| [How to build an AI Agent with CopilotKit and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/copilotkit) | Learn how to build an agentic application using data stored in ClickHouse with ClickHouse MCP and CopilotKit |
25+
| [How to build an AI Agent with CrewAI and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/crewai) | Learn how build an AI Agent with CrewAI and the ClickHouse MCP Server |
2426
| [How to build an AI Agent with DSPy and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/DSPy) | Learn how to build an AI agent with DSPy and the ClickHouse MCP Server |
27+
| [How to build an AI Agent with Microsoft Agent Framework and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/microsoft-agent-framework) | Learn how build an AI Agent with Microsoft Agent Framework and the ClickHouse MCP Server |
2528
| [How to build an OpenAI agent using ClickHouse MCP Server.](/use-cases/AI/MCP/ai-agent-libraries/openai-agents) | Learn how to build an OpenAI agent that can interact with ClickHouse MCP Server. |
2629
<!--AUTOGENERATED_END-->
2730

docs/use-cases/AI_ML/MCP/ai_agent_libraries/langchain.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@ You can run the following steps either from your Python REPL or via script.
3333
Install the required libraries by running the following commands:
3434

3535
```python
36-
!pip install -q --upgrade pip
37-
!pip install -q langchain-mcp-adapters
38-
!pip install -q langgraph
39-
!pip install -q "langchain[anthropic]"
36+
pip install -q --upgrade pip
37+
pip install -q langchain-mcp-adapters langgraph "langchain[anthropic]"
4038
```
4139

4240
## Setup credentials {#setup-credentials}

docs/use-cases/AI_ML/MCP/ai_agent_libraries/llamaindex.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,8 @@ You can run the following steps either from your Python REPL or via script.
3333
Install the required libraries by running the following commands:
3434

3535
```python
36-
!pip install -q --upgrade pip
37-
!pip install -q llama-index
38-
!pip install -q clickhouse-connect
39-
!pip install -q llama-index-llms-anthropic
40-
!pip install -q llama-index-tools-mcp
36+
pip install -q --upgrade pip
37+
pip install -q llama-index clickhouse-connect llama-index-llms-anthropic llama-index-tools-mcp
4138
```
4239

4340
## Setup credentials {#setup-credentials}

0 commit comments

Comments
 (0)