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

@fre4x/mcp-inspector

v1.0.43

Published

MCP server wrapping the MCP Inspector CLI — lets AI agents test any MCP server without a browser.

Downloads

1,607

Readme

@fre4x/mcp-inspector

MCP server that lets AI agents connect to, inspect, and test any MCP server at runtime — no browser required.

It wraps the MCP SDK Client directly, so an agent can:

  1. Spawn a target MCP server (stdio) or connect to a remote one (SSE / Streamable HTTP)
  2. Maintain a live session and call multiple operations
  3. Tear down the connection when done

Tools

| Tool | Description | |------|-------------| | inspector_connect | Spawn/connect to an MCP server. Returns session_id. | | inspector_disconnect | Close an active session. | | inspector_list_sessions | List all active sessions with targets. | | inspector_list_tools | List tools exposed by the connected server. | | inspector_call_tool | Call a tool and return its result. | | inspector_list_resources | List resources exposed by the server. | | inspector_read_resource | Read a resource by URI. | | inspector_list_resource_templates | List resource URI templates. | | inspector_list_prompts | List prompts exposed by the server. | | inspector_get_prompt | Retrieve a rendered prompt with arguments. |


Usage

Connecting to a stdio server

inspector_connect(command="node", server_args=["dist/index.js"])
→ { session_id: "session-0" }

inspector_list_tools(session_id="session-0")
→ { tools: [...] }

inspector_call_tool(session_id="session-0", tool_name="hn_get_top_stories", tool_args={ limit: 5 })
→ { content: [...] }

inspector_disconnect(session_id="session-0")

Connecting to a remote server

inspector_connect(server_url="https://example.com/mcp", transport="http")
inspector_connect(server_url="https://example.com/sse", transport="sse",
                  headers={ "Authorization": "Bearer <token>" })

Mock Mode

Run without any real server:

MOCK=true npx @fre4x/mcp-inspector

All tools return realistic fixture data when MOCK=true or INSPECTOR_MOCK=true.


Claude Desktop Configuration

{
  "mcpServers": {
    "mcp-inspector": {
      "command": "npx",
      "args": ["-y", "@fre4x/mcp-inspector"]
    }
  }
}