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

imcp

v0.2.0

Published

Node.js SDK for Model Context Protocol (MCP)

Readme

IMCP

IMCP is a Node.js SDK for MCP servers, offering a streamlined, powerful experience of managing MCP servers to your agents (e.g. code agents such as Cline/Github Copilot/Roo), through a unified interface – currently we support coding, browser and Bing tools but can expand more. Let’s use it to weapon your agents

Overview

IMCP allows you to:

  • Discover and install available MCP servers to your local agents
  • Run a local UI interface with simple click experience to manage MCP servers
  • Distribute your own MCP servers to others

Get started

  • Quick usage with latest version
npx -y imcp@latest serve
  • Or install it globally
npm install -g imcp
imcp serve

Commands

Global Options

  • --verbose: Show detailed logs for all commands

serve

Starts a local web interface for managing MCP servers.

npx -y imcp@latest serve [options]

Options:

  • -p, --port <port>: Port to run the server on (default: 3000)
  • -f, --feed-file <filepath>: Path to a custom feed configuration file
  • -s, --schemas-directory <path>: Path to a directory containing adhoc schema files
  • -r, --repo <repository>: Git repository URL to sync feeds from
  • -b, --branch <branch>: Git branch to sync feeds from (defaults to main)

Example:

# Start the web interface on port 3000
npx -y imcp@latest serve --port 3000

# Start with a custom feed configuration file
npx -y imcp@latest serve --feed-file ./custom-feed.json

# Start with a custom feed configuration file and adhoc schema files.
npx -y imcp@latest serve --feed-file ./custom-feed.json --schemas-directory ./feeds/schemas/ai-coder-tools

# Start with feed from custom repo and branch
npx -y imcp@latest serve --repo https://github.com/ai-microsoft/imcp-feed --branch main

install

Install MCP servers directly from the CLI, either by specifying a single server or by providing a JSON payload that mirrors the web API.

# Install using defaults (all supported clients)
imcp install --name github-tools --clients "MSRooCode"

# Install with explicit client targets and env vars
imcp install --name github-tools \
  --clients "MSRooCode;GithubCopilot" \
  --envs "GITHUB_TOKEN=abc123;API_KEY=xyz789"

# Reinstall (remove existing configuration first)
imcp install --name github-tools --clients "MSRooCode" --reinstall

Options:

  • --name <name>: Server name (required unless using a payload)
  • --clients <clients>: Semicolon-delimited list of clients (required unless using a payload)
  • --envs <envs>: Semicolon-delimited KEY=VALUE pairs applied to single-server installs
  • --payload <json>: Inline JSON payload (either a serverList object or a direct { "serverName": { ... } } map)
  • --payload-file <path>: Path to a JSON payload file matching the web API structure
  • -r, --reinstall: Removes existing client configuration and forces requirement packages to reinstall before applying the new config

CLI installs block until requirement checks, requirement reinstalls (when requested), and client installers complete, so you always see success/failure inline in the terminal. The web UI continues to track these steps asynchronously via the install operation log.

Supported client keys: MSRooCode, RooCode, Cline, GithubCopilot, ClaudeCode, and (on Windows) VisualStudio.

The CLI automatically resolves each server's category based on the name defined in your feeds, so no --category flag is needed. Run imcp pull if a server name cannot be found locally. When using payloads, ensure each server entry includes a non-empty targetClients array using the keys above.

MCP Installation and Publish

For details on how to install and publish MCP servers, please refer to the following documents:

License

MIT