LANGGRAPH-MCP-AGENTS

LANGGRAPH-MCP-AGENTS

Transforms MCP tools into collaborative agents using the LangGraph framework.

serkanyasr

Research & Data
Visit Server

README

<p align="center"><h1 align="center">LANGGRAPH-MCP-AGENTS</h1></p> <p align="center"> <em>From Protocol to Intelligence: Powering Agents with MCP.</em> </p> <p align="center"> <img src="https://img.shields.io/github/license/serkanyasr/langgraph-mcp-agents?style=default&logo=opensourceinitiative&logoColor=white&color=0080ff" alt="license"> <img src="https://img.shields.io/github/last-commit/serkanyasr/langgraph-mcp-agents?style=default&logo=git&logoColor=white&color=0080ff" alt="last-commit"> <img src="https://img.shields.io/github/languages/top/serkanyasr/langgraph-mcp-agents?style=default&color=0080ff" alt="repo-top-language"> <img src="https://img.shields.io/github/languages/count/serkanyasr/langgraph-mcp-agents?style=default&color=0080ff" alt="repo-language-count"> </p> <p align="center"><!-- default option, no dependency badges. --> </p> <p align="center"> <!-- default option, no dependency badges. --> </p> <br>

šŸ“ Overview

LangGraph MCP Agents is an experimental project that aims to transform tools defined under MCP (Modular Communication Protocol) into autonomous agents using the LangGraph framework.

The aim of this project is to transform tools designed in accordance with the MCP protocol (e.g. tools with tasks such as planning, coding, execution, etc.) into agents running on the LangGraph infrastructure and to provide effective task sharing and collaboration between these agents.


https://github.com/user-attachments/assets/e7c7e012-06aa-4a4e-a4cd-103141efed33

šŸ“ Project Structure

└── langgraph-mcp-agents/
    ā”œā”€ā”€ LICENCE
    ā”œā”€ā”€ README.md
    ā”œā”€ā”€ app_cli.py
    ā”œā”€ā”€ mcp_client.py
    ā”œā”€ā”€ mcp_config.json
    └── requirements.txt

šŸ“‚ Project Index

<details open> <summary><b><code>LANGGRAPH-MCP-AGENTS/</code></b></summary> <details> <!-- root Submodule --> <summary><b>root</b></summary> <blockquote> <table> <tr> <td><b><a href='https://github.com/serkanyasr/langgraph-mcp-agents/blob/master/mcp_client.py'>mcp_client.py</a></b></td> <td>- MCPClient and MCPServer are the main classes in mcp_client.py<br>- MCPClient manages connections to multiple MCP servers, loads server configurations, starts servers, initializes tools, and handles resource cleanup<br>- MCPServer represents an individual server connection, manages tool execution, and handles cleanup operations<br>- The file is crucial for server communication and tool management in the project.</td> </tr> <tr> <td><b><a href='https://github.com/serkanyasr/langgraph-mcp-agents/blob/master/app_cli.py'>app_cli.py</a></b></td> <td>- App_cli.py is a command-line interface for a chatbot application that leverages the OpenAI language model<br>- It initializes the AI agent, accepts user input, and generates AI responses in real-time<br>- The script also handles server configurations, manages conversation history, and provides error handling and debugging support.</td> </tr> <tr> <td><b><a href='https://github.com/serkanyasr/langgraph-mcp-agents/blob/master/requirements.txt'>requirements.txt</a></b></td> <td>- Requirements.txt manages the necessary dependencies for the project<br>- It ensures the correct versions of libraries such as mcp, langgraph, langchain, python-dotenv, langchain-mcp-adapters, and rich are installed<br>- This contributes to the stability and reproducibility of the codebase across different environments.</td> </tr> <tr> <td><b><a href='https://github.com/serkanyasr/langgraph-mcp-agents/blob/master/mcp_config.json'>mcp_config.json</a></b></td> <td>- Mcp_config.json configures the Model Context Protocol servers, specifying the commands and arguments for different server types: filesystem, SQLite, and memory<br>- It enables the project to interact with various data storage systems, enhancing its flexibility and adaptability to diverse environments.</td> </tr> <tr> <td><b><a href='https://github.com/serkanyasr/langgraph-mcp-agents/blob/master/LICENCE'>LICENCE</a></b></td> <td>- The LICENCE file establishes the legal framework for the project, granting users the right to freely use, modify, and distribute the software under the MIT License<br>- It also disclaims warranties and limits liability, ensuring the software is provided "as is"<br>- This file is crucial for defining the terms of use and distribution of the software.</td> </tr> </table> </blockquote> </details> </details>


šŸš€ Getting Started

ā˜‘ļø Prerequisites

Before getting started with langgraph-mcp-agents, ensure your runtime environment meets the following requirements:

  • Programming Language: Python
  • Package Manager: Pip

āš™ļø Installation

Install langgraph-mcp-agents using one of the following methods:

Build from source:

  1. Clone the langgraph-mcp-agents repository:
āÆ git clone https://github.com/serkanyasr/langgraph-mcp-agents
  1. Navigate to the project directory:
āÆ cd langgraph-mcp-agents
  1. Install the project dependencies:

Using pip Ā  <img align="center" src="https://img.shields.io/badge/Pip-3776AB.svg?style={badge_style}&logo=pypi&logoColor=white" />

āÆ pip install -r requirements.txt

šŸ¤– Usage

Run langgraph-mcp-agents using the following command: Using pip Ā  <img align="center" src="https://img.shields.io/badge/Pip-3776AB.svg?style={badge_style}&logo=pypi&logoColor=white" />

āÆ python {entrypoint}

šŸ”° Contributing

  • šŸ’¬ Join the Discussions: Share your insights, provide feedback, or ask questions.
  • šŸ› Report Issues: Submit bugs found or log feature requests for the langgraph-mcp-agents project.
  • šŸ’” Submit Pull Requests: Review open PRs, and submit your own PRs.

<details closed> <summary>Contributing Guidelines</summary>

  1. Fork the Repository: Start by forking the project repository to your github account.
  2. Clone Locally: Clone the forked repository to your local machine using a git client.
    git clone https://github.com/serkanyasr/langgraph-mcp-agents
    
  3. Create a New Branch: Always work on a new branch, giving it a descriptive name.
    git checkout -b new-feature-x
    
  4. Make Your Changes: Develop and test your changes locally.
  5. Commit Your Changes: Commit with a clear message describing your updates.
    git commit -m 'Implemented new feature x.'
    
  6. Push to github: Push the changes to your forked repository.
    git push origin new-feature-x
    
  7. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
  8. Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution! </details>

<details closed> <summary>Contributor Graph</summary> <br> <p align="left"> <a href="https://github.com{/serkanyasr/langgraph-mcp-agents/}graphs/contributors"> <img src="https://contrib.rocks/image?repo=serkanyasr/langgraph-mcp-agents"> </a> </p> </details>


šŸŽ— License

This project is licensed under the MIT License.For more details, refer to the LICENSE file.


Recommended Servers

Crypto Price & Market Analysis MCP Server

Crypto Price & Market Analysis MCP Server

A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.

Featured
TypeScript
MCP PubMed Search

MCP PubMed Search

Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.

Featured
Python
dbt Semantic Layer MCP Server

dbt Semantic Layer MCP Server

A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.

Featured
TypeScript
mixpanel

mixpanel

Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.

Featured
TypeScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python
Nefino MCP Server

Nefino MCP Server

Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.

Official
Python
Vectorize

Vectorize

Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.

Official
JavaScript
Cryo MCP Server

Cryo MCP Server

An API server that implements the Model Completion Protocol (MCP) for Cryo blockchain data extraction, allowing users to query Ethereum blockchain data through any MCP-compatible client.

Local
Python
ArXiv MCP Server

ArXiv MCP Server

Enables AI assistants to search and access arXiv research papers through a simple Message Control Protocol interface, allowing for paper search, download, listing, and reading capabilities.

Local
Python
MCP-RoCQ

MCP-RoCQ

MCP-RoCQ integrates with the Coq proof assistant to enable automated dependent type checking, inductive type definitions, and property proving through XML protocol communication.

Local
Python