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 🙏

© 2025 – Pkg Stats / Ryan Hefner

bloom-mcp-wrapper

v1.0.5

Published

Universal wrapper for MCP servers to route API calls through Bloom proxy with automatic npm/file detection

Readme

Bloom MCP Proxy Wrapper

A universal wrapper for Model Context Protocol (MCP) servers that routes all external API calls through the Bloom proxy platform, providing authentication, observability, and access control.

Simple and consistent usage for all MCP server types:

  • NPM packages (e.g., @modelcontextprotocol/server-github, firecrawl-mcp)
  • Local scripts (e.g., ./my-mcp-server.js)
  • No absolute paths required!
  • Automatic environment detection (localhost for dev, production API for prod)

Installation

npm install -g bloom-mcp-wrapper

Quick Start

Add MCP servers to your Claude Desktop configuration using bloom-mcp-wrapper:

{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": ["-y", "bloom-mcp-wrapper", "@modelcontextprotocol/server-github"],
      "env": {
        "BLOOM_AUTH": "your-bloom-auth-token",
        "MCP_SERVICE_NAME": "github"
      }
    },
    "firecrawl": {
      "command":"npx",
      "args": ["-y", "bloom-mcp-wrapper", "firecrawl-mcp"],
      "env": {
        "BLOOM_AUTH": "your-bloom-auth-token",
        "MCP_SERVICE_NAME": "firecrawl"
      }
    },
    "custom-local": {
      "command": "npx",
      "args": ["-y", "bloom-mcp-wrapper", "./my-custom-mcp-server.js"],
      "env": {
        "BLOOM_AUTH": "your-bloom-auth-token",
        "MCP_SERVICE_NAME": "custom"
      }
    }
  }
}

Environment Variables

  • BLOOM_AUTH (required): Your Bloom authentication token
  • BLOOM_PROXY (optional): Custom proxy URL (defaults to localhost:8000 in dev, production API in prod)
  • DEBUG (optional): Set to bloom to enable debug logging
  • NODE_ENV (optional): Set to development to force localhost proxy

How It Works

The wrapper:

  1. Auto-detects whether the target is an npm package or local file
  2. Spawns the MCP server using the appropriate method (npx for packages, node for files)
  3. Intercepts all HTTP/HTTPS requests made by the MCP server
  4. Routes them through the Bloom proxy for authentication and monitoring
  5. Provides dummy API keys automatically (no need to configure service-specific keys)

Environment Detection

  • Development/Debug: Routes to http://localhost:8000 when NODE_ENV=development or DEBUG is set
  • Production: Routes to https://api.bloomtechnologies.app by default

Features

Universal compatibility: Works with any MCP server
Zero configuration: No need to set up service-specific API keys
Auto-detection: Automatically handles npm packages vs local files
Environment-aware: Different routing for dev vs production
Debug-friendly: Comprehensive logging when needed
Lightweight: No external dependencies

Examples

NPM Packages (Scoped)

bloom-wrapper @modelcontextprotocol/server-github

NPM Packages (Unscoped)

bloom-wrapper firecrawl-mcp

Local Files

bloom-wrapper ./my-server.js
bloom-wrapper /absolute/path/to/server.js

With Debug Logging

DEBUG=bloom bloom-wrapper @modelcontextprotocol/server-github

Environment Variables

Required Variables

  • BLOOM_AUTH: Your Bloom authentication token
  • MCP_SERVICE_NAME: The service name for permission checking (e.g., "github", "google_maps", "firecrawl")

Optional Variables

  • BLOOM_PROXY: Proxy URL (defaults to Bloom API)
  • DEBUG: Set to "bloom" for debug logging

License

MIT

Support

For issues and questions, please visit: https://github.com/bloomtechnologies-app/bloom-mcp-proxy/issues