Spaces:
Sleeping
Sleeping
File size: 7,856 Bytes
c3b9f62 aa98b19 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
---
title: LLM-Agent-Chatbot-MCP
emoji: π
colorFrom: yellow
colorTo: purple
sdk: streamlit
sdk_version: "1.44.1"
app_file: app.py
pinned: false
short_description: An Agentic Framework with MCP Tools for Complex Reasoning
tags:
- LLM
- Agent
- MCP
---
# LangGraph Agents + MCP
[](README.md) [](README_KOR.md)
[](https://github.com/teddylee777/langgraph-mcp-agents)
[](https://opensource.org/licenses/MIT)
[](https://www.python.org/)
[](https://github.com/teddylee777/langgraph-mcp-agents)

## Project Overview

`LangChain-MCP-Adapters` is a toolkit provided by **LangChain AI** that enables AI agents to interact with external tools and data sources through the Model Context Protocol (MCP). This project provides a user-friendly interface for deploying ReAct agents that can access various data sources and APIs through MCP tools.
### Features
- **Streamlit Interface**: A user-friendly web interface for interacting with LangGraph `ReAct Agent` with MCP tools
- **Tool Management**: Add, remove, and configure MCP tools through the UI (Smithery JSON format supported). This is done dynamically without restarting the application
- **Streaming Responses**: View agent responses and tool calls in real-time
- **Conversation History**: Track and manage conversations with the agent
## MCP Architecture
The Model Context Protocol (MCP) consists of three main components:
1. **MCP Host**: Programs seeking to access data through MCP, such as Claude Desktop, IDEs, or LangChain/LangGraph.
2. **MCP Client**: A protocol client that maintains a 1:1 connection with the server, acting as an intermediary between the host and server.
3. **MCP Server**: A lightweight program that exposes specific functionalities through a standardized model context protocol, serving as the primary data source.
## Quick Start with Docker
You can easily run this project using Docker without setting up a local Python environment.
### Requirements (Docker Desktop)
Install Docker Desktop from the link below:
- [Install Docker Desktop](https://www.docker.com/products/docker-desktop/)
### Run with Docker Compose
1. Navigate to the `dockers` directory
```bash
cd dockers
```
2. Create a `.env` file with your API keys in the project root directory.
```bash
cp .env.example .env
```
Enter your obtained API keys in the `.env` file.
(Note) Not all API keys are required. Only enter the ones you need.
- `ANTHROPIC_API_KEY`: If you enter an Anthropic API key, you can use "claude-3-7-sonnet-latest", "claude-3-5-sonnet-latest", "claude-3-haiku-latest" models.
- `OPENAI_API_KEY`: If you enter an OpenAI API key, you can use "gpt-4o", "gpt-4o-mini" models.
- `LANGSMITH_API_KEY`: If you enter a LangSmith API key, you can use LangSmith tracing.
```bash
ANTHROPIC_API_KEY=your_anthropic_api_key
OPENAI_API_KEY=your_openai_api_key
LANGSMITH_API_KEY=your_langsmith_api_key
LANGSMITH_TRACING=true
LANGSMITH_ENDPOINT=https://api.smith.langchain.com
LANGSMITH_PROJECT=LangGraph-MCP-Agents
```
When using the login feature, set `USE_LOGIN` to `true` and enter `USER_ID` and `USER_PASSWORD`.
```bash
USE_LOGIN=true
USER_ID=admin
USER_PASSWORD=admin123
```
If you don't want to use the login feature, set `USE_LOGIN` to `false`.
```bash
USE_LOGIN=false
```
3. Select the Docker Compose file that matches your system architecture.
**AMD64/x86_64 Architecture (Intel/AMD Processors)**
```bash
# Run container
docker compose -f docker-compose.yaml up -d
```
**ARM64 Architecture (Apple Silicon M1/M2/M3/M4)**
```bash
# Run container
docker compose -f docker-compose-mac.yaml up -d
```
4. Access the application in your browser at http://localhost:8585
(Note)
- If you need to modify ports or other settings, edit the docker-compose.yaml file before building.
## Install Directly from Source Code
1. Clone this repository
```bash
git clone https://github.com/teddynote-lab/langgraph-mcp-agents.git
cd langgraph-mcp-agents
```
2. Create a virtual environment and install dependencies using uv
```bash
uv venv
uv pip install -r requirements.txt
source .venv/bin/activate # For Windows: .venv\Scripts\activate
```
3. Create a `.env` file with your API keys (copy from `.env.example`)
```bash
cp .env.example .env
```
Enter your obtained API keys in the `.env` file.
(Note) Not all API keys are required. Only enter the ones you need.
- `ANTHROPIC_API_KEY`: If you enter an Anthropic API key, you can use "claude-3-7-sonnet-latest", "claude-3-5-sonnet-latest", "claude-3-haiku-latest" models.
- `OPENAI_API_KEY`: If you enter an OpenAI API key, you can use "gpt-4o", "gpt-4o-mini" models.
- `LANGSMITH_API_KEY`: If you enter a LangSmith API key, you can use LangSmith tracing.
```bash
ANTHROPIC_API_KEY=your_anthropic_api_key
OPENAI_API_KEY=your_openai_api_key
LANGSMITH_API_KEY=your_langsmith_api_key
LANGSMITH_TRACING=true
LANGSMITH_ENDPOINT=https://api.smith.langchain.com
LANGSMITH_PROJECT=LangGraph-MCP-Agents
```
4. (New) Use the login/logout feature
When using the login feature, set `USE_LOGIN` to `true` and enter `USER_ID` and `USER_PASSWORD`.
```bash
USE_LOGIN=true
USER_ID=admin
USER_PASSWORD=admin123
```
If you don't want to use the login feature, set `USE_LOGIN` to `false`.
```bash
USE_LOGIN=false
```
## Usage
1. Start the Streamlit application.
```bash
streamlit run app.py
```
2. The application will run in the browser and display the main interface.
3. Use the sidebar to add and configure MCP tools
Visit [Smithery](https://smithery.ai/) to find useful MCP servers.
First, select the tool you want to use.
Click the COPY button in the JSON configuration on the right.

Paste the copied JSON string in the `Tool JSON` section.
<img src="./assets/add-tools.png" alt="tool json" style="width: auto; height: auto;">
Click the `Add Tool` button to add it to the "Registered Tools List" section.
Finally, click the "Apply" button to apply the changes to initialize the agent with the new tools.
<img src="./assets/apply-tool-configuration.png" alt="tool json" style="width: auto; height: auto;">
4. Check the agent's status.

5. Interact with the ReAct agent that utilizes the configured MCP tools by asking questions in the chat interface.

## Hands-on Tutorial
For developers who want to learn more deeply about how MCP and LangGraph integration works, we provide a comprehensive Jupyter notebook tutorial:
- Link: [MCP-HandsOn-KOR.ipynb](./MCP-HandsOn-KOR.ipynb)
This hands-on tutorial covers:
1. **MCP Client Setup** - Learn how to configure and initialize the MultiServerMCPClient to connect to MCP servers
2. **Local MCP Server Integration** - Connect to locally running MCP servers via SSE and Stdio methods
3. **RAG Integration** - Access retriever tools using MCP for document retrieval capabilities
4. **Mixed Transport Methods** - Combine different transport protocols (SSE and Stdio) in a single agent
5. **LangChain Tools + MCP** - Integrate native LangChain tools alongside MCP tools
This tutorial provides practical examples with step-by-step explanations that help you understand how to build and integrate MCP tools into LangGraph agents.
## License
MIT License
## References
- https://github.com/langchain-ai/langchain-mcp-adapters |