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

arunsiv-mcp-inspector

v1.0.4

Published

A custom MCP Client built with React and Node.js

Readme

arunsiv-mcp-client

A modern, premium React-based graphical interface for connecting to and interacting with Model Context Protocol (MCP) servers.

This client serves as a user-friendly graphical interface for interacting with MCP servers. It provides dynamic forms based on tool schemas, rich text/image result rendering, and a beautiful dark-mode glassmorphism UI.

Usage

You can launch the client from any terminal by simply running:

npx arunsiv-mcp-inspector

This will automatically download the package, boot the local client servers, and open the beautiful UI directly in your browser.

Features

  • Protocol Agnostic Transport: Connect to any MCP server via stdio (e.g., npx, uvx, python, node) or remote servers via SSE.
  • Dynamic Forms: Automatically reads a tool's JSON inputSchema and generates user-friendly form fields (text inputs, numbers, dropdowns, checkboxes) so you never have to write raw JSON manually.
  • Rich Result Rendering: Instead of dumping raw JSON payloads, the UI parses the MCP content array to display formatted text and native images.
  • Immediate Feedback: Clear SUCCESS and FAILURE badges on tool execution.
  • Remote Server Auth & Environment Variables: Built-in UI to securely pass custom headers (like Bearer tokens) to remote SSE servers or inject API keys as environment variables into local Stdio servers.
  • Zero-Config Local Security: Employs a fully automatic, invisible cryptographic handshake between the CLI and the proxy server to ensure no malicious local scripts can execute your connected tools behind your back.

Architecture

This tool mirrors the robust architecture of the official MCP client. When you run the CLI, an orchestrator spins up two independent processes:

  1. Proxy Server (server): A lightweight Node.js/Express proxy using the official @modelcontextprotocol/sdk. It establishes the underlying protocol connections (stdio or SSE) and acts as an HTTP bridge for the UI.
  2. Frontend UI Server (client): A separate static file server that serves the compiled Vite + React Single Page Application (SPA), complete with a lightweight proxy to dynamically route /api/* traffic to the backend proxy.

Local Development

If you want to run or modify the project locally:

  1. Clone the repository and install dependencies:
    npm install
  2. Start the local orchestrator:
    npm run start

Connecting to an MCP Server

Once the UI is open, use the connection panel to connect to an MCP Server.

Example 1: Using npx (Node.js)

  • Transport Type: Stdio
  • Command: npx
  • Arguments: -y arunsiv-weather-mcp-server

Example 2: Using uvx (Python)

  • Transport Type: Stdio
  • Command: uvx
  • Arguments: mcp-server-sqlite --db path/to/database.db