
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
simple-mcp-manager
Advanced tools
Interactive TUI and Web UI for monitoring and restarting MCP servers across Cursor, VS Code, Windsurf, Claude Desktop, Claude Code, and GitHub Copilot
Monitor and restart MCP (Model Context Protocol) servers for Cursor, VS Code, Windsurf, Claude Desktop, Claude Code, and GitHub Copilot from one terminal. A lightweight TUI (terminal UI) that discovers your MCP configs, shows which servers are running or stopped, and lets you kill or restart them—no install into any AI tool required.
Works on Windows, macOS, Linux, and WSL.
Run with npx — no clone or global install needed:
# Terminal UI mode (default)
npx simple-mcp-manager
# Web UI mode - opens in your browser at http://localhost:3000
npx simple-mcp-manager --ui
# Web UI mode with custom port
npx simple-mcp-manager --ui --port 8080
Or install and run:
npm install -g simple-mcp-manager
mcp-manager # Terminal UI mode (default)
mcp-manager --ui # Web UI mode
Or clone and run locally:
git clone https://github.com/tamb/simple-mcp-manager.git
cd simple-mcp-manager
npm install
npm start # Terminal UI mode
npm run start:ui # Web UI mode
A standalone CLI you run in a separate terminal. It is not an MCP server and does not need to be installed into Cursor, VS Code, or any other tool. It:
| Tool | Config locations |
|---|---|
| Cursor | ~/.cursor/mcp.json, %APPDATA%\Cursor\User\mcp.json, per-project in ~/.cursor/projects/*/mcp.json, workspace .cursor/mcp.json |
| VS Code | ~/.vscode/mcp.json, %APPDATA%\Code\User\mcp.json (Win), ~/Library/Application Support/Code/User/mcp.json (Mac), ~/.config/Code/User/mcp.json (Linux), workspace .vscode/mcp.json |
| Windsurf | ~/.codeium/windsurf/mcp_config.json, %APPDATA%\Windsurf\User\mcp_config.json (Win), ~/Library/Application Support/Windsurf/User/mcp_config.json (Mac), ~/.config/Windsurf/User/mcp_config.json (Linux), workspace .windsurf/mcp.json |
| Claude Desktop | %APPDATA%\Claude\claude_desktop_config.json (Win), ~/Library/Application Support/Claude/claude_desktop_config.json (Mac), ~/.config/claude/claude_desktop_config.json (Linux) |
| Claude Code | ~/.claude/mcp.json, ~/.claude.json, workspace .claude/mcp.json |
| GitHub Copilot | ~/.mcp.json, workspace .mcp.json |
Most tools use { "mcpServers": { ... } }; GitHub Copilot and VS Code use { "servers": { ... } }. The manager auto-detects both.
| Key | Action |
|---|---|
r | Restart the selected server |
k | Kill the selected server |
K | Kill all running servers |
a | Restart all stopped servers |
F5 | Manual refresh |
d | Show server details |
| Up/Down | Navigate server list |
q | Quit |
Run with the --ui flag to start a web-based interface accessible at http://localhost:3000 (or the next available port):
mcp-manager --ui
The Web UI provides the same functionality as the terminal UI but in your browser:
r - Restart selected serverk - Kill selected serverK - Kill all running serversa - Restart all stopped serversd - Show server detailsl - Show server logs (from details modal)F5 - Refresh server listEsc / Enter - Close modals↑ / ↓ - Navigate server listThe Web UI is a self-contained single-page application with no external dependencies — it works entirely offline after the initial page load.
The Web UI listens on port 3000 by default. If that port is in use, it automatically tries 3001, 3002, etc., up to 3010. You can specify a custom port using the --port flag:
mcp-manager --ui --port 8080
| Feature | Windows | macOS | Linux | WSL |
|---|---|---|---|---|
| Process detection | PowerShell | ps aux | ps aux | PowerShell (Windows processes) |
| Kill process | taskkill /PID /F (per process) | kill SIGTERM/SIGKILL | kill SIGTERM/SIGKILL | taskkill.exe /PID /F |
| Spawn process | shell: true for .cmd | detached | detached | cmd.exe /C (Windows side) |
On WSL, the manager detects Windows processes so it can see servers started by Cursor, VS Code, or Copilot on the Windows side; refresh runs every 15s there to avoid slow PowerShell queries.
mcpServers (or servers) from each configd) shows full config path and environment variables (secrets masked)FAQs
Interactive TUI and Web UI for monitoring and restarting MCP servers across Cursor, VS Code, Windsurf, Claude Desktop, Claude Code, and GitHub Copilot
We found that simple-mcp-manager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.