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

@dreygur/mcp

v0.3.5

Published

Bridge local MCP clients to remote MCP servers with OAuth support

Downloads

457

Readme

MCP Connect

License: MIT Rust npm GitHub stars

A production-ready proxy and multiplexing server for the Model Context Protocol (MCP). MCP Connect enables seamless integration between local MCP clients and remote HTTP servers with OAuth support.

Works With

Connect your favorite AI agents to remote MCP servers:

| Agent | Description | |-------|-------------| | Claude Desktop | Anthropic's official desktop app | | Claude Code | Anthropic's CLI coding assistant | | Cursor | AI-powered code editor | | Windsurf | Codeium's AI IDE | | Zed | High-performance code editor | | Continue | Open-source AI assistant for VSCode/JetBrains |

Features

  • Remote Server Support - Connect to multiple remote MCP servers via HTTP/HTTPS
  • OAuth Authentication - Automatic OAuth 2.0 flow with token caching
  • Centralized Configuration - Manage all servers in a single .mcp-connect.json file
  • Registry Integration - Search and discover servers from the official MCP Registry
  • Multiplexing - Access multiple servers through a single connection with namespace routing
  • IDE Integration - Auto-generate configuration for Zed, VSCode, and Cursor

Installation

npx (no install)

npx @dreygur/mcp https://remote.server/mcp

npm (global install)

npm install -g @dreygur/mcp

Shell script (Linux/macOS)

curl -fsSL https://raw.githubusercontent.com/dreygur/mcp-connect/main/scripts/install.sh | bash

PowerShell (Windows)

irm https://raw.githubusercontent.com/dreygur/mcp-connect/main/scripts/install.ps1 | iex

Cargo

# From GitHub
cargo install --git https://github.com/dreygur/mcp-connect

# From crates.io (when published)
cargo install mcp-connect

From source

git clone https://github.com/dreygur/mcp-connect.git
cd mcp-connect
cargo install --path crates/mcp-connect

Pre-built binaries

Download from releases page for:

  • Linux (x86_64)
  • macOS (x86_64, ARM64)
  • Windows (x86_64)

Quick Start

One-off connection (no config needed):

npx @dreygur/mcp https://remote.mcp.server/sse

With auth token:

npx @dreygur/mcp https://api.example.com/mcp --auth-token "your_token"

Multi-server setup:

# Initialize configuration
mcp-connect init

# Add a server from registry
mcp-connect config add github modelcontextprotocol/github-mcp-server

# Configure credentials
echo "GITHUB_TOKEN=your_token" >> .env

# Generate IDE configuration
mcp-connect generate --ide vscode

# Start the server
mcp-connect serve

Documentation

Full documentation is available at dreygur.js.org/mcp-connect

Architecture

crates/
├── mcp-types/      # Common types and traits
├── mcp-server/     # Server-side MCP (STDIO)
├── mcp-client/     # Client for remote HTTP servers
├── mcp-proxy/      # Message forwarding and routing
├── mcp-registry/   # MCP Registry API client
├── mcp-config/     # Configuration management
└── mcp-connect/    # CLI

See ARCHITECTURE.md for details.

Configuration Example

{
  "version": "1.0",
  "envFile": ".env",
  "routing": {
    "method": "namespace-prefix",
    "separator": "/"
  },
  "servers": {
    "github": {
      "name": "github-mcp-server",
      "remote": {
        "type": "streamable-http",
        "url": "https://api.githubcopilot.com/mcp",
        "headers": [
          {
            "key": "Authorization",
            "value": "Bearer ${GITHUB_TOKEN}"
          }
        ]
      }
    }
  }
}

Requirements

  • Node.js 14+ (for npm installation)
  • Rust 1.75+ (for building from source)

Contributing

See Contributing Guide for details.

License

MIT License - see LICENSE for details.

Support

If you find MCP Connect useful, please consider giving it a star on GitHub! It helps others discover the project.

Star on GitHub

Acknowledgments

  • RMCP - Rust SDK for Model Context Protocol
  • Tokio - Asynchronous runtime for Rust