Cover image
Try Now
2025-04-15

3 years

Works with Finder

0

Github Watches

0

Github Forks

2

Github Stars

plugged.in App

plugged.in Logo

The Crossroads for AI Data Exchanges

A unified management interface for all your MCP servers

GitHub Stars License Next.js MCP

📋 Overview

The plugged.in App is a comprehensive web application for managing Machine Conversation Protocol (MCP) servers. It works in conjunction with the plugged.in MCP Proxy to provide a unified interface for discovering, configuring, and utilizing AI tools across multiple MCP servers.

This application enables seamless integration with any MCP client (Claude, Cline, Cursor, etc.) while providing advanced management capabilities through an intuitive web interface.

✨ Key Features

  • Multi-Workspace Support: Switch between different sets of MCP configurations to prevent context pollution
  • Interactive Playground: Test and experiment with your MCP tools directly in the browser
  • Tool Management: Discover, organize, and manage AI tools from multiple sources
  • Resource & Template Discovery: View available resources and resource templates for connected MCP servers
  • Custom Instructions: Add server-specific instructions that can be used as MCP prompts
  • Server Notes: Add custom notes to each configured MCP server
  • Extensive Logging: Detailed logging capabilities for MCP interactions in the Playground
  • Prompt Management: Discover and manage prompts from connected MCP servers
  • Expanded Discovery: Search for MCP servers across GitHub, Smithery, and npmjs.com
  • Self-Hostable: Run your own instance with full control over your data

🚀 Quick Start with Docker

The easiest way to get started with the plugged.in App is using Docker Compose:

# Clone the repository
git clone https://github.com/VeriTeknik/pluggedin-app.git
cd pluggedin-app

# Set up environment variables
cp .env.example .env
# Edit .env with your specific configuration

# Start the application with Docker Compose
docker compose up --build -d

Then open http://localhost:12005 in your browser to access the plugged.in App.

🔌 Connecting MCP Clients

Prerequisites

  • The plugged.in App running (either self-hosted or at https://plugged.in)
  • An API key from the plugged.in App (available in the API Keys page)
  • The plugged.in MCP Proxy installed

Claude Desktop Configuration

{
  "mcpServers": {
    "pluggedin": {
      "command": "npx",
      "args": ["-y", "@pluggedin/mcp-proxy@latest"],
      "env": {
        "PLUGGEDIN_API_KEY": "YOUR_API_KEY",
        "PLUGGEDIN_API_BASE_URL": "http://localhost:12005" // For self-hosted instances
      }
    }
  }
}

Cursor Configuration

For Cursor, you can use command-line arguments:

npx -y @pluggedin/mcp-proxy@latest --pluggedin-api-key YOUR_API_KEY --pluggedin-api-base-url http://localhost:12005

🏗️ System Architecture

The plugged.in ecosystem consists of two main components:

sequenceDiagram
    participant MCPClient as MCP Client (e.g., Claude Desktop)
    participant PluggedinMCP as plugged.in MCP Proxy
    participant PluggedinApp as plugged.in App
    participant MCPServers as Installed MCP Servers

    MCPClient ->> PluggedinMCP: Request list tools/resources/prompts
    PluggedinMCP ->> PluggedinApp: Get capabilities via API
    PluggedinApp ->> PluggedinMCP: Return capabilities (prefixed)

    MCPClient ->> PluggedinMCP: Call tool/read resource/get prompt
    alt Standard capability
        PluggedinMCP ->> PluggedinApp: Resolve capability to server
        PluggedinApp ->> PluggedinMCP: Return server details
        PluggedinMCP ->> MCPServers: Forward request to target server
        MCPServers ->> PluggedinMCP: Return response
    else Custom instruction
        PluggedinMCP ->> PluggedinApp: Get custom instruction
        PluggedinApp ->> PluggedinMCP: Return formatted messages
    end
    PluggedinMCP ->> MCPClient: Return response

    alt Discovery tool
        MCPClient ->> PluggedinMCP: Call pluggedin_discover_tools
        PluggedinMCP ->> PluggedinApp: Trigger discovery action
        PluggedinApp ->> MCPServers: Connect and discover capabilities
        MCPServers ->> PluggedinApp: Return capabilities
        PluggedinApp ->> PluggedinMCP: Confirm discovery complete
        PluggedinMCP ->> MCPClient: Return discovery result
    end

💻 Production Deployment

System Requirements

  • Node.js v18+ (recommended v20+)
  • PostgreSQL 15+
  • PNPM package manager
  • Nginx web server (for production deployments)
  • Systemd (for service management)

Production Setup

  1. Clone the repository:

    git clone https://github.com/VeriTeknik/pluggedin-app.git /home/pluggedin/pluggedin-app
    cd /home/pluggedin/pluggedin-app
    
  2. Install dependencies:

    pnpm install
    
  3. Set up environment variables:

    cp .env.example .env
    # Edit .env with your specific configuration
    
  4. Run database migrations:

    pnpm db:migrate:auth
    pnpm db:generate
    pnpm db:migrate
    
  5. Build the application for production:

    NODE_ENV=production pnpm build
    
  6. Create a systemd service file at /etc/systemd/system/pluggedin.service:

    [Unit]
    Description=plugged.in Application Service
    After=network.target postgresql.service
    Wants=postgresql.service
    
    [Service]
    User=pluggedin
    Group=pluggedin
    WorkingDirectory=/home/pluggedin/pluggedin-app
    ExecStart=/usr/bin/pnpm start
    Restart=always
    RestartSec=10
    StandardOutput=append:/var/log/pluggedin/pluggedin_app.log
    StandardError=append:/var/log/pluggedin/pluggedin_app.log
    Environment=PATH=/usr/bin:/usr/local/bin
    Environment=NODE_ENV=production
    Environment=PORT=12005
    
    [Install]
    WantedBy=multi-user.target
    
  7. Set up Nginx as a reverse proxy:

    # HTTPS Server
    server {
        listen 443 ssl;
        server_name your-domain.com;
    
        # SSL configuration
        ssl_certificate /etc/letsencrypt/live/your-domain.com/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/your-domain.com/privkey.pem;
    
        # Next.js static files
        location /_next/static/ {
            alias /home/pluggedin/pluggedin-app/.next/static/;
            expires 365d;
            add_header Cache-Control "public, max-age=31536000, immutable";
        }
    
        # Proxy settings for Node.js application
        location / {
            proxy_pass http://localhost:12005;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection 'upgrade';
            proxy_set_header Host $host;
            proxy_cache_bypass $http_upgrade;
        }
    }
    
    # HTTP redirect to HTTPS
    server {
        listen 80;
        server_name your-domain.com;
        return 301 https://$host$request_uri;
    }
    
  8. Enable and start the service:

    sudo systemctl daemon-reload
    sudo systemctl enable pluggedin.service
    sudo systemctl start pluggedin.service
    

Security Considerations

MCP Server Sandboxing (Linux/Ubuntu)

The plugged.in App automatically wraps the execution of STDIO MCP servers with firejail --quiet when running on a Linux system. This utilizes Firejail's default security profile to restrict the server's capabilities, notably limiting filesystem access.

To enable this security feature, install Firejail:

sudo apt update && sudo apt install firejail

🔄 Cloud vs. Self-Hosted

Feature Self-Hosted Cloud (plugged.in)
Cost Free Free tier available
Data Privacy Full control Server-side encryption
Authentication Optional Built-in
Session Context Basic Enhanced
Hosting Your infrastructure Managed service
Updates Manual Automatic
Latency Depends on your setup Optimized global CDN

🧩 Integration with plugged.in MCP Proxy

The plugged.in App is designed to work seamlessly with the plugged.in MCP Proxy, which provides:

  • A unified interface for all MCP clients
  • Tool discovery and reporting
  • Request routing to the appropriate MCP servers
  • Support for the latest MCP specification

📚 Related Resources

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📄 License

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

🔮 Roadmap

The plugged.in project is actively developing several exciting features:

  • Testing Infrastructure: Comprehensive test coverage for core functionality
  • Playground Optimizations: Improved performance for log handling
  • Embedded Chat (Phase 2): Generate revenue through embeddable AI chat interfaces
  • AI Assistant Platform (Phase 3): Create a social network of specialized AI assistants
  • Privacy-Focused Infrastructure (Phase 4): Dedicated RAG servers and distributed GPU services
  • Retrieval-Augmented Generation (RAG): Integration with vector databases like Milvus
  • Collaboration & Sharing: Multi-user sessions and embeddable chat widgets

相关推荐

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • lumpenspace
  • Take an adjectivised noun, and create images making it progressively more adjective!

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Yusuf Emre Yeşilyurt
  • I find academic articles and books for research and literature reviews.

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • https://zenepic.net
  • Embark on a thrilling diplomatic quest across a galaxy on the brink of war. Navigate complex politics and alien cultures to forge peace and avert catastrophe in this immersive interstellar adventure.

  • apappascs
  • Descubra la colección más completa y actualizada de servidores MCP en el mercado. Este repositorio sirve como un centro centralizado, que ofrece un extenso catálogo de servidores MCP de código abierto y propietarios, completos con características, enlaces de documentación y colaboradores.

  • ShrimpingIt
  • Manipulación basada en Micrypthon I2C del expansor GPIO de la serie MCP, derivada de AdaFruit_MCP230xx

  • pontusab
  • La comunidad de cursor y windsurf, encontrar reglas y MCP

  • ravitemer
  • Un poderoso complemento Neovim para administrar servidores MCP (protocolo de contexto del modelo)

  • jae-jae
  • Servidor MCP para obtener contenido de la página web con el navegador sin cabeza de dramaturgo.

  • patruff
  • Puente entre los servidores Ollama y MCP, lo que permite a LLM locales utilizar herramientas de protocolo de contexto del modelo

  • HiveNexus
  • Un bot de chat de IA para equipos pequeños y medianos, que apoyan modelos como Deepseek, Open AI, Claude y Gemini. 专为中小团队设计的 ai 聊天应用 , 支持 Deepseek 、 Open ai 、 Claude 、 Géminis 等模型。

  • JackKuo666
  • 🔍 Habilitar asistentes de IA para buscar y acceder a la información del paquete PYPI a través de una interfaz MCP simple.

  • av
  • Ejecute sin esfuerzo LLM Backends, API, frontends y servicios con un solo comando.

    Reviews

    5 (1)
    Avatar
    user_8MaWBIeI
    2025-04-17

    I've been using the pluggedin-app from VeriTeknik for a while now and it's simply fantastic. The user interface is intuitive and easy to navigate, making it perfect for both beginners and experienced users. The seamless integration and performance of the app have significantly enhanced my productivity. Highly recommended for anyone looking to streamline their workflow!