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

mentu-mcp

v1.0.0

Published

MCP intelligence layer — intent routing, perception, judgment, and sandboxed code execution across child MCP servers.

Readme

mentu-mcp

npm version License: Apache-2.0 CI Node.js >= 20

A meta-MCP server that collapses hundreds of tools into 12 meta-tools (~1,000 schema tokens).

How It Works

mentu-mcp sits between your MCP client and any number of child MCP servers. Instead of registering every tool from every server (which can exceed context limits), it exposes 12 meta-tools that discover, route, and execute calls across all connected servers.

Client (Claude Code, Cursor, VS Code, Windsurf...)
  |
  +-- mentu-mcp (12 meta-tools, ~1,000 tokens)
        |
        +-- mcp_discover    search across all servers
        +-- mcp_provision   intent-based provisioning
        +-- mcp_call        forward tool calls
        +-- mcp_execute     V8 sandboxed code execution
        +-- mcp_do          autonomous orchestration (API)
        +-- mcp_cortex      diagnostic advisory (API)
        +-- mcp_consult     knowledge query (API)
        +-- mcp_reload      reload configuration
        +-- mcp_elevate     trust elevation
        +-- mcp_register    runtime server registration
        +-- mcp_skill_*     skill catalog (2 tools)
        |
        +-- child-server-1 (50 tools)
        +-- child-server-2 (30 tools)
        +-- child-server-N (...)

Quick Start

# Install globally
npm install -g mentu-mcp

# Auto-configure for your MCP client
mentu-mcp --init

# Verify
mentu-mcp --version

--init detects your MCP client (Claude Code, Cursor, VS Code, Windsurf, Zed, Claude Desktop, Gemini CLI, Amazon Q) and writes the appropriate configuration file.

Supported Clients

| Client | Config file | Auto-detected | |--------|-------------|:---:| | Claude Code | .mcp.json | Yes | | Cursor | .cursor/mcp.json | Yes | | VS Code | .vscode/mcp.json | Yes | | Windsurf | ~/.windsurf/mcp.json | Yes | | Zed | ~/.config/zed/settings.json | Yes | | Claude Desktop | claude_desktop_config.json | Yes | | Gemini CLI | .gemini/settings.json | Yes | | Amazon Q | .amazonq/mcp.json | Yes | | Any MCP-compatible client | Manual .mcp.json | -- |

Tools

| Tool | Description | Requires API | |------|-------------|:---:| | mcp_discover | Search across all servers' tool catalogs | -- | | mcp_provision | Intent-based server provisioning from npm | -- | | mcp_call | Forward a tool call to a child server | -- | | mcp_execute | Run code in a V8 sandbox | -- | | mcp_reload | Reload .mcp.json configuration at runtime | -- | | mcp_elevate | Elevate trust level for auto-provisioned servers | -- | | mcp_register | Register a new server at runtime | -- | | mcp_skill_discover | Search the skill catalog | -- | | mcp_skill_advise | Get skill recommendations for a task | -- | | mcp_do | Autonomous multi-server orchestration | Yes | | mcp_cortex | Diagnostic advisory | Yes | | mcp_consult | Knowledge query | Yes |

Configuration

Add child MCP servers to ~/.mcp.json (or use --init to generate):

{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": ["-y", "@playwright/mcp@latest"]
    },
    "my-server": {
      "command": "node",
      "args": ["./path/to/server.js"]
    }
  }
}

mentu-mcp spawns child servers lazily on first use, manages connection pooling with circuit breakers, and tears them down on idle timeout.

API Intelligence

9 of 12 tools run entirely locally with no network calls. 3 tools (mcp_do, mcp_cortex, mcp_consult) are backed by the mentu intelligence API for perception scoring, judgment evaluation, and diagnostic advisory.

Without an API key: all local tools work normally. API-backed tools return a clear error explaining the requirement.

With an API key:

export MENTU_API_KEY=your_key

Or set it in your .mcp.json:

{
  "mcpServers": {
    "mentu": {
      "command": "npx",
      "args": ["-y", "mentu-mcp"],
      "env": {
        "MENTU_API_KEY": "your_key"
      }
    }
  }
}

100 free API calls per day. No credit card required.

Intent Routing

Map natural-language intents to specific tools in your config:

{
  "intents": {
    "crawl": "crawlio.start_crawl",
    "analyze": "crawlio.analyze_page",
    "browse": "playwright.execute"
  }
}

When mcp_provision receives a request matching an intent, it routes directly to the mapped tool without searching.

Environment Variables

| Variable | Purpose | Required | |----------|---------|:---:| | MENTU_API_KEY | API key for intelligence features | No |

Contributing

See CONTRIBUTING.md for development setup, project structure, and pull request guidelines.

Security

See SECURITY.md for reporting vulnerabilities.

License

Apache-2.0