AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Mcp Server Manager

mcp-vlazic-mcp-server-manager · by vlazic

A cross-platform, single-binary manager for Model Context Protocol (MCP) servers, built with Go and a reactive HTMX web interface.

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add mcp-vlazic-mcp-server-manager

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-vlazic-mcp-server-manager)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
11mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mcp Server Manager? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MCP Server Manager

What Problem Do We Solve?

Solve the hassle of manually editing various JSON files for different MCP clients

Managing Model Context Protocol servers across multiple AI clients (Claude Code, Gemini CLI, etc.) requires manually editing separate JSON configuration files for each client. This is tedious, error-prone, and hard to maintain.

Why Choose MCP Server Manager?

  • Single Binary - No dependencies, just download and run
  • Single Simple Config File - One YAML file controls everything
  • All Operating Systems - Works on Linux, macOS, Windows
  • All MCP Clients - Supports Claude Code, Gemini CLI, and more
  • GUI Interface - Web interface starts with computer, always available on localhost:6543
  • Dark/Light Theme - System theme detection with manual override
  • Add Servers via Web UI - No need to edit configuration files manually
  • Real-time Validation - Instant feedback on configuration errors
  • Example Configurations - Built-in examples for common server types

Screenshot

The web interface provides an intuitive way to manage and add MCP servers across multiple AI clients with real-time validation

Installation Options

Option 1: Debian/Ubuntu Package (Recommended)

# Download the latest .deb from GitHub Releases
wget https://github.com/vlazic/mcp-server-manager/releases/latest/download/mcp-server-manager_Linux_x86_64.deb

# Install the package
sudo dpkg -i mcp-server-manager_Linux_x86_64.deb

# Enable and start the service
systemctl --user enable --now mcp-server-manager

Option 2: Download Release Binary

# Download and extract
wget https://github.com/vlazic/mcp-server-manager/releases/latest/download/mcp-server-manager_Linux_x86_64.tar.gz
tar -xzf mcp-server-manager_Linux_x86_64.tar.gz
chmod +x mcp-server-manager

# Run directly (config will be auto-created)
./mcp-server-manager

# Or specify custom config location
./mcp-server-manager --config /path/to/config.yaml
./mcp-server-manager -c /path/to/config.yaml

Option 3: Build from Source

git clone https://github.com/vlazic/mcp-server-manager.git
cd mcp-server-manager

# Build only
make build

# Build, install, and start as system service
make setup

Configuration

Config File Locations (Smart Resolution)

The application automatically finds your configuration file in this priority order:

  1. Command line flag: --config /path/to/config.yaml or -c /path/to/config.yaml
  2. User config: ~/.config/mcp-server-manager/config.yaml (recommended)
  3. Current directory: ./config.yaml
  4. Embedded default: Auto-created if none found

First Run

On first run, a default configuration will be automatically created at:

~/.config/mcp-server-manager/config.yaml

Edit this file to configure your MCP servers and client paths.

How It Works

  1. Configure once - Add servers via web UI or edit the auto-created config file
  2. Control from GUI - Use the web interface to enable/disable servers per client
  3. Automatic sync - Changes are automatically applied to all client config files
  4. Always available - Runs in background, accessible at http://localhost:6543

Adding MCP Servers

Option 1: Via Web Interface (Recommended)

  1. Open http://localhost:6543
  2. Click "Add New Server"
  3. Choose from example configurations or enter your own
  4. Submit and the server is automatically added to your config

Option 2: Edit Configuration File

Manually edit ~/.config/mcp-server-manager/config.yaml and restart the service.

Example Configuration

server_port: 6543

# MCP Servers - Map format for easy editing
mcpServers:
  # STDIO Transport (command-based local processes)
  filesystem:
    command: "npx"
    args: ["@modelcontextprotocol/server-filesystem", "/path/to/your/directory"]
    env:
      NODE_ENV: "production"

  # HTTP Transport (Claude Code format with type field)
  context7-claude:
    type: "http"
    url: "https://mcp.context7.com/mcp"
    headers:
      CONTEXT7_API_KEY: "your-api-key"
      Accept: "application/json, text/event-stream"

  # HTTP Transport (Gemini CLI format with httpUrl)
  context7-gemini:
    httpUrl: "https://mcp.context7.com/mcp"
    headers:
      CONTEXT7_API_KEY: "your-api-key"

# MCP Clients - Which servers each client uses
clients:
  claude_code:
    config_path: "~/.claude.json"
    enabled:
      - filesystem
      - context7-claude

  gemini_cli:
    config_path: "~/.gemini/settings.json"
    enabled:
      - context7-gemini
      - filesystem

That's it! No more manual JSON editing across multiple files.

Service Management

Systemd User Service Commands

# Check service status
systemctl --user status mcp-server-manager

# Start/stop service
systemctl --user start mcp-server-manager
systemctl --user stop mcp-server-manager

# Enable/disable auto-start
systemctl --user enable mcp-server-manager
systemctl --user disable mcp-server-manager

# View logs
journalctl --user -u mcp-server-manager -f

# Restart after config changes
systemctl --user restart mcp-server-manager

Optional: Making the Service Start on Boot (Before Login)

By default, the user service starts automatically only after you log in. For most desktop users, this is sufficient.

However, if you run this on a headless or remote server, you will want the service to start at boot, even before you log in via SSH. To enable this "lingering" behavior, run the following command once:

# Allow the user service to start at boot, even without a login session
sudo loginctl enable-linger $USER

Command Line Options

# Run with default config resolution
./mcp-server-manager

# Specify custom config file
./mcp-server-manager --config /path/to/config.yaml
./mcp-server-manager -c /path/to/config.yaml

# View help
./mcp-server-manager -h

Troubleshooting

Config File Issues

  • Check if config file exists: ls ~/.config/mcp-server-manager/config.yaml
  • View current config location in logs
  • Test config syntax: ensure valid YAML format

Service Issues

  • Check service logs: journalctl --user -u mcp-server-manager -f
  • Ensure port 6543 is available
  • Verify MCP server commands are in PATH (e.g., npx available)

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.