drio
Open app

mcp-servers-client-langgraph-react-agent

Source

Multi MCP Server and client w/ LangGraph Prebuilt ReAct Agent

Catalog onlyCatalog onlySTDIO

Overview

This project is a multi MCP server and client that utilizes the LangGraph Prebuilt ReAct Agent, designed to facilitate interactions with multiple APIs and enhance the development of applications using these services.

To use this project, navigate to your project directory, create and activate a virtual environment, and set up a .env file with the necessary API keys. Finally, install the required packages using pip.

  • Integration with multiple APIs through LangGraph. - Prebuilt ReAct Agent for efficient API interactions. - Easy setup with virtual environments and dependency management.
  1. Building applications that require interaction with multiple APIs.
  2. Developing chatbots or agents that utilize various data sources.
  3. Enhancing data processing workflows with integrated API calls.

Add to your AI client

Use these steps to connect mcp-servers-client-langgraph-react-agent in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-servers-client-langgraph-react-agent-ahmedmusawir": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-client-langgraph-react-agent-ahmedmusawir"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-servers-client-langgraph-react-agent-ahmedmusawir": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-client-langgraph-react-agent-ahmedmusawir"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-servers-client-langgraph-react-agent-ahmedmusawir": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-client-langgraph-react-agent-ahmedmusawir"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-servers-client-langgraph-react-agent-ahmedmusawir": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-client-langgraph-react-agent-ahmedmusawir"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-servers-client-langgraph-react-agent-ahmedmusawir": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-client-langgraph-react-agent-ahmedmusawir"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-servers-client-langgraph-react-agent-ahmedmusawir": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-client-langgraph-react-agent-ahmedmusawir"
      ]
    }
  }
}

FAQ

What programming language is used in this project?

The project is developed in Python.

Is there a specific version of Python required?

It is recommended to use Python 3.7 or higher.

How can I contribute to this project?

You can contribute by submitting issues or pull requests on the GitHub repository.