MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

This turns a bunch of links into a robust library that can be queried with an mcp server.

Created 2/10/2026
Updated about 21 hours ago
Repository documentation and setup instructions

MCP Workforce Nexus: The Activator

Last updated: 2026-02-11

The primary engine for deploying, hardening, and unifying MCP server environments with industrial-grade reliability.

The Activator orchestrates the Workforce Nexus, transforming raw GitHub repositories into production-ready AI tools. It handles environment isolation, structural auditing, and atomic deployments.


⚡ Quick Start: Standalone Activator

Install a single repository as a portable MCP server immediately:

python3 serverinstaller/install.py

Selection tip: Follow the prompts to detect Python/Node and generate an install.sh shim.


🚀 Package Start: The Workforce Nexus

Deploy the entire hardened Nexus suite to ~/.mcp-tools in one command:

python3 bootstrap.py --gui

Selection tip: Use --gui to auto-launch the dashboard after installation.


📋 Table of Contents

  1. Nexus Architecture
  2. Reliability Tier Comparison
  3. Core Capabilities
  4. Universal Safety & Rollback
  5. Documentation (Low Density)

🔍 Nexus Architecture

The Activator unifies all specialized tools into a single, hardened location.

graph LR
    A["The Activator<br>(bootstrap.py)"] --> N["~/.mcp-tools/<br>(The Nexus)"]
    N --> S["Surgeon<br>(mcp-injector)"]
    N --> O["Observer<br>(mcp-server-manager)"]
    N --> L["Librarian<br>(mcp-link-library)"]

📊 Reliability Tier Comparison

All tiers include Universal Safety (Pre-flight & Rollback).

| Tier | Flag | Convergence Area | Strategy | Features | | :--- | :--- | :---: | :--- | :--- | | Lite | --lite | Distributed | Zero-Dep | Portable, Atomic Reversal, Auto-Chmod | | Standard | (Default) | Linked | Pure Python | Structural Audit, Regex Indexing, Symlinks | | Industrial | --permanent | Unified | Infrastructure | Managed Venv, jsonschema, psutil, PyYAML |


🌟 Core Capabilities

  • Atomic Transactions: Multi-tool installation that reverts completely on failure.
  • Suite Synergy: Detects sibling tools and triggers "Application Convergence" for a unified experience.
  • Intelligent Resolution: Prompt/Recommend between multiple entry points (e.g., .sh vs .py).
  • Auto-Chmod Enforcement: Automatically sets execute bits on all entry points and dependencies.
  • Pre-flight Intelligence: Verifies disk health and permissions before execution.
  • Headless Mode: Zero-touch replication for automated agents.

🔐 Universal Safety & Rollback

Every operation follows a strict Pre-flight -> Track -> Commit/Rollback pattern.

flowchart LR
    P[Pre-flight] --> T_Check[Track Bits]
    T_Check --> Action[Install/Update]
    Action -- Error --> R[Atomic Rollback]
    Action -- Success --> C[Lock Manifest]

📚 Documentation (Low Density Deep Dives)

Detailed technical manuals for engineering reference:

🛠️ Workforce Nexus Command Reference

| Tool | Shared Command | Direct Module Execution | Responsibility | | :--- | :--- | :--- | :--- | | Activator | mcp-activator | python3 bootstrap.py | Orchestration, Installation, Sync | | Observer | mcp-observer | python3 -m mcp_inventory.cli | UI/GUI, Health, Inventory | | Surgeon | mcp-surgeon | python3 mcp_injector.py | Injection, Config Hardening | | Librarian | mcp-librarian | python3 mcp.py | Knowledge SQLite, URL Persistence |


🖥️ GUI Management (The Observer Dashboard)

The Observer GUI is your primary interface for monitoring the health and connection status of all Nexus components.

  • To Launch:
    mcp-observer gui
    # OR (Direct)
    python3 -m mcp_inventory.cli gui
    
  • Dashboard URL: http://localhost:8501
  • To Stop:
    • Press Ctrl + C in the terminal where the GUI is running.
    • Closing the terminal session will also terminate the server.
  • To Restart: Simply run the launch command again. The GUI will automatically re-index the current inventory.

🌍 Global Path & Workspace Context

1. Setting the PATH

For the mcp- commands to work from any directory, ensure your shell configuration (~/.zshrc or ~/.bashrc) includes the Nexus bin directory:

export PATH="$HOME/.mcp-tools/bin:$PATH"

(The Industrial/Standard bootstrap attempts to automate this step during installation.)

2. Execution Directory

  • Installation/Sync: Always run bootstrap.py from the repo-mcp-packager root.
  • Daily Use: Once installed, all mcp- commands can be executed from any directory within your workspace.

🧩 GUI Control Surface (Tier-Aware)

The GUI scaffold in repo-mcp-packager/gui/ is a control surface over CLI behavior:

  • Lite: only lite-safe actions should run; non-lite actions appear visually unchecked.
  • Standard: enables linked-workspace actions and operational commands.
  • Permanent: enables hardened infrastructure actions (managed venv/path/integrity workflows).

The widget model maps to the command catalog and executes through an allowlisted backend runner, reporting command output and status.


Application Convergence & Synergy

The "Nexus Application" mode is triggered when the bootstrapper detects all four modules (mcp-injector, mcp-link-library, mcp-server-manager, repo-mcp-packager) in the same workspace.

Convergence Matrix (Organization & Areas) Feature Lite (Loose Binding) Standard (Close Binding) Industrial (Managed App) Philosophy "Distributed & Portable" "Cohesive & Linked" "Monolithic & Hardened" Logic Area Repos remain in workspace ~/.mcp-tools/suite (Symlinks) ~/.mcp-tools/app (Managed Mirror) Shared Base ~/.mcp-tools/lite/ ~/.mcp-tools/standard/ ~/.mcp-tools/industrial/ Environment OS-Default / Manual Venv Per-module local venvs Single Unified Hardened Venv Update Path Manual per repo Live (via Symlinks) On-Demand (nexus-sync) Global Path Optional (Local first) Recommended Mandatory Enforcement


📝 Metadata

  • Status: Production Ready / Hardened (Phase 9)
  • Author: l00p3rl00p
  • Workflow: Adheres to @/fix-md-files-for-release
Quick Setup
Installation guide for this server

Install Package (if required)

uvx mcp-link-library

Cursor configuration (mcp.json)

{ "mcpServers": { "l00p3rl00p-mcp-link-library": { "command": "uvx", "args": [ "mcp-link-library" ] } } }