npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iflow-mcp/mcp-autostarter

v1.0.2

Published

MCP server that intelligently restarts Claude's MCP handler process without disrupting the UI

Readme

MCP Autostarter

An intelligent MCP server that restarts Claude's MCP handler process without disrupting the UI. Unlike traditional restart tools that kill the entire Claude Desktop application, this tool surgically restarts only the Node.js process handling MCP connections, allowing for seamless plugin reloading.

Why MCP Autostarter?

When developing or installing MCP plugins, you need to restart Claude to load new configurations. Traditional approaches kill the entire Claude Desktop app, disrupting your workflow. MCP Autostarter is smarter - it:

  1. Identifies the MCP handler process - Finds the specific Node.js process managing MCP connections
  2. Gracefully restarts it - Sends SIGTERM first, then SIGKILL if needed
  3. Lets Claude auto-recover - Claude Desktop detects the disconnection and automatically restarts the handler
  4. Keeps your UI intact - No window closing, no lost context

Installation

The easiest way is to let Claude Desktop install it automatically via npx. Just add it to your configuration!

Configuration

Add to your Claude Desktop MCP settings:

{
  "mcpServers": {
    "autostarter": {
      "command": "npx",
      "args": ["-y", "mcp-autostarter"],
      "env": {}
    }
  }
}

That's it! No manual installation needed - npx will handle everything automatically.

Usage

Once configured, you can use these commands in Claude:

Smart MCP Restart (Recommended)

"restart MCP"

This intelligently restarts only the MCP handler process, keeping Claude Desktop running.

Full Claude Restart

"restart Claude"

This fully restarts Claude Desktop (use only if MCP restart fails).

Check Status

"check MCP status"

Shows the current status of MCP handler and Claude Desktop processes.

How It Works

  1. Process Detection: Uses intelligent heuristics to find the Node.js process running MCP servers
  2. Graceful Shutdown: Sends SIGTERM to allow clean shutdown
  3. Automatic Recovery: Claude Desktop detects the disconnection and restarts the handler
  4. Verification: Confirms the new process is running before reporting success

Platform Support

  • ✅ macOS
  • ✅ Windows
  • ✅ Linux

Development

# Install dependencies
npm install

# Build
npm run build

# Development mode (watch)
npm run dev

# Type checking
npm run typecheck

# Linting
npm run lint

Comparison with mcp-server-restart

| Feature | mcp-autostarter | mcp-server-restart | |---------|----------------|-------------------| | Restarts MCP handler only | ✅ | ❌ | | Keeps UI running | ✅ | ❌ | | Cross-platform | ✅ | ❌ (Mac only) | | Process detection | Intelligent | Basic | | Graceful shutdown | ✅ | ❌ |

License

MIT