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

@team-attention/mcproxy

v0.1.0

Published

MCP Proxy with tool filtering for Claude Code

Readme

mcproxy

MCP Proxy with tool filtering for Claude Code. Intercepts MCP server requests and filters tools based on configuration to reduce token consumption.

Installation

# Run directly with npx
npx @team-attention/mcproxy <upstream-command>

# Or install globally
npm install -g @team-attention/mcproxy

Usage

Basic Usage

Wrap your MCP server command with mcproxy:

mcproxy npx -y @modelcontextprotocol/server-filesystem /path/to/dir

With Claude Code (.mcp.json)

Configure your .mcp.json to use mcproxy as a wrapper:

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y", "@team-attention/mcproxy",
        "--",
        "npx", "-y", "@modelcontextprotocol/server-filesystem", "/path/to/dir"
      ]
    },
    "linear": {
      "command": "npx",
      "args": [
        "-y", "@team-attention/mcproxy",
        "--",
        "npx", "-y", "mcp-remote", "https://mcp.linear.app/mcp",
        "--header", "Authorization: Bearer ${LINEAR_API_KEY}"
      ]
    }
  }
}

Configuration

mcproxy automatically creates a .mcproxy.json file to manage tool settings:

{
  "version": "1.0",
  "servers": {
    "[email protected]": {
      "tools": {
        "list_issues": true,
        "create_issue": true,
        "delete_issue": false
      }
    }
  }
}
  • Tools are auto-registered on first use with enabled: true
  • Set a tool to false to disable it
  • Server key is derived from serverInfo.name@version in MCP initialize response

How It Works

Claude Code <-> mcproxy (stdio) <-> MCP Server (subprocess)
                    |
              .mcproxy.json (tool config)
  1. mcproxy intercepts the MCP initialize response to get server name
  2. On tools/list response, it filters out disabled tools
  3. On tools/call request, it blocks disabled tool calls

Options

--config <path>  Path to workspace root for .mcproxy.json (default: current directory)

Debugging

Set DEBUG=1 to enable verbose logging:

DEBUG=1 mcproxy npx -y @some/mcp-server

License

MIT