mcp-servers

A comprehensive infrastructure for enabling multi-agent AI swarms powered by specialized Model Context Protocol (MCP) servers.

Visit Server
Added on 3/28/2025

MCP Servers Multi-Agent AI Infrastructure

A comprehensive infrastructure for enabling multi-agent AI swarms powered by specialized Model Context Protocol (MCP) servers. This monorepo contains the full stack of components needed to orchestrate, connect, and empower intelligent agents with various specialized capabilities.

๐ŸŒŸ Overview

This project enables the creation of a multi-agent AI ecosystem where specialized agents can collaborate, share context, and leverage different capabilities through the Model Context Protocol (MCP). By providing a standardized communication layer, agents can seamlessly access vector databases, specialized tools, and various data sources through a unified protocol.

The infrastructure supports:

  • Semantic search and retrieval through vector embeddings
  • Multi-agent collaboration and communication
  • Modular, microservice-based architecture
  • Visual inspection and debugging of agent interactions
  • Extensible tool frameworks for AI capabilities

๐Ÿงฉ Core Components

Inspector

An interactive dashboard for monitoring, testing, and debugging MCP servers. Built with React/Vite frontend and Express backend.

  • Located in: /inspector
  • Features:
    • Real-time connection to any MCP server
    • Interactive exploration of available tools
    • Test prompts and tool invocations
    • Monitor agent interactions
    • Debug server responses and behavior

Qdrant-DB with MCP Integration

Vector database implementation using Qdrant with full MCP server integration, enabling semantic search capabilities for AI agents.

  • Located in: /qdrant-db
  • Features:
    • Vector embeddings for semantic similarity search
    • Document storage with metadata
    • Python client for advanced operations
    • FastEmbed integration for efficient embeddings
    • Seamless connection to the MCP ecosystem

MCP Docker Network

Infrastructure for orchestrating and connecting MCP services in a unified network.

  • Located in: /mcp-docker-network
  • Features:
    • Isolated network for secure service communication
    • Management tools for container orchestration
    • Service discovery within the swarm
    • Simplified deployment of complex agent systems

๐Ÿš€ Getting Started

Prerequisites

  • Docker and Docker Compose
  • Node.js (for local development)
  • Python 3.9+ (for running clients and scripts)

Quick Start

  1. Clone the repository:

    git clone https://github.com/FrankGenGo/mcp-servers.git
    cd mcp-servers
    
  2. Set up the shared Docker network:

    cd mcp-docker-network
    ./scripts/manage-network.sh create
    
  3. Start the Qdrant vector database and MCP server:

    cd ../qdrant-db/qdrant_stack
    docker-compose up -d
    
  4. Start the Inspector dashboard:

    cd ../../inspector
    docker build -t mcp-inspector .
    docker run -d --name mcp-inspector --network mcp-docker-network -p 5173:5173 -p 3000:3000 mcp-inspector
    
  5. Access the Inspector dashboard at http://localhost:5173

๐Ÿ—๏ธ Architecture

This project implements a distributed microservices architecture centered around the Model Context Protocol:

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”     โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”     โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚   AI Agent    โ”‚     โ”‚  AI Agent     โ”‚     โ”‚  AI Agent     โ”‚
โ”‚  Capabilities โ”‚     โ”‚  Reasoning    โ”‚     โ”‚  Planning     โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜     โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜     โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
        โ”‚                     โ”‚                     โ”‚
        โ”‚                     โ–ผ                     โ”‚
        โ”‚             โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”             โ”‚
        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–บ  MCP Network   โ—„โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                     โ”‚ Communication  โ”‚
                     โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                             โ”‚
              โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
              โ”‚                             โ”‚
    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
    โ”‚   Qdrant MCP       โ”‚        โ”‚  Inspector         โ”‚
    โ”‚   Vector Search    โ”‚        โ”‚  Monitoring        โ”‚
    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Components communicate over a shared Docker network, with:

  • Inspector dashboard (port 5173) โ†’ Express proxy (port 3000) โ†’ MCP servers
  • Qdrant MCP server (port 8000) โ†’ Qdrant database (port 6333)
  • All services connected via the mcp-docker-network

๐Ÿง  Use Cases

  • Multi-Agent Systems: Build collaborative agent systems that combine different AI capabilities
  • Knowledge Management: Create semantic search systems with intuitive AI interfaces
  • Tool Integration: Extend AI capabilities with specialized tools and data sources
  • Development & Debugging: Inspect and test MCP servers during development

๐Ÿ› ๏ธ Development

Each component can be developed independently:

  • Inspector: React/TypeScript frontend with Express backend
  • Qdrant MCP Server: Python FastMCP implementation
  • Network Management: Bash scripts and Docker Compose configurations

See the README in each subdirectory for specific development instructions.

๐Ÿ“š Further Resources

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.