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

spydermcp

v1.2.1

Published

SpyderMCP - Universal proxy for MCP-compatible applications and cloud-hosted servers with Playwright browser automation

Downloads

20

Readme

SpyderMCP

Universal proxy for MCP-compatible applications and cloud-hosted servers

SpyderMCP is a command-line tool that connects MCP-compatible applications (like Claude Desktop, VS Code with Cline, etc.) to cloud-hosted MCP servers. It handles the stdio transport locally while communicating with your cloud server via HTTP.

Features

  • Universal Proxy - Connect any MCP client to cloud-hosted servers
  • Automatic Updates - Stay up-to-date automatically
  • MongoDB Support - Built-in support for MongoDB MCP servers
  • Cross-Platform - Works on Windows, macOS, and Linux
  • Easy Configuration - Simple command-line interface

Installation

Prerequisites

  • Node.js 20.0.0 or higher

Install via npm (Recommended)

npm install -g spydermcp

That's it! The spydermcp command is now available globally.

Verify Installation

spydermcp --version

Usage

Basic Usage

spydermcp --server <server-name> --cloudUrl <your-cloud-url>

Example: MongoDB Server

spydermcp --server mongodb-mcp-server \
  --cloudUrl https://your-spydermcp-instance.com \
  --connectionString mongodb://localhost:27017/mydb \
  --apiKey your-api-key

Configuration with MCP Clients

Claude Desktop

Add to claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "spydermcp-mongodb": {
      "command": "spydermcp",
      "args": [
        "--server", "mongodb-mcp-server",
        "--cloudUrl", "https://your-cloud-server.com",
        "--connectionString", "mongodb://localhost:27017/mydb",
        "--apiKey", "your-api-key"
      ]
    }
  }
}

VS Code with Cline

Add to .vscode/mcp.json or Cline settings:

{
  "mcpServers": {
    "spydermcp-mongodb": {
      "command": "spydermcp",
      "args": [
        "--server", "mongodb-mcp-server",
        "--cloudUrl", "https://your-cloud-server.com",
        "--connectionString", "mongodb://localhost:27017/mydb"
      ]
    }
  }
}

Command-Line Options

Required Options

  • --server <name> - MCP server name (e.g., mongodb-mcp-server)

Optional Options

  • --cloudUrl <url> - Cloud server URL (env: SPYDERMCP_CLOUD_URL)
    • Default: http://localhost:3001
  • --apiKey <key> - API key for cloud server authentication (env: SPYDERMCP_API_KEY)
  • --version, -v - Show version number

MongoDB-Specific Options

When using --server mongodb-mcp-server, you can pass any MongoDB connection options:

  • --connectionString - MongoDB connection string
  • --db - Database name
  • --host - MongoDB host
  • --port - MongoDB port
  • --username - MongoDB username
  • --password - MongoDB password
  • And many more MongoDB options...

Run spydermcp --help to see all available options.

Environment Variables

You can use environment variables instead of command-line arguments:

export SPYDERMCP_CLOUD_URL=https://your-cloud-server.com
export SPYDERMCP_API_KEY=your-api-key

spydermcp --server mongodb-mcp-server --connectionString mongodb://localhost:27017/mydb

Updates

Automatic Updates

SpyderMCP automatically checks for updates when you run it. If a new version is available, it will:

  1. Show an update notification
  2. Download and install the update automatically
  3. Restart with your current command

Example:

$ spydermcp --server mongodb-mcp-server

🔄 Update available: 1.0.0 → 1.0.2
📥 Downloading and installing update...
✅ Update complete! Restarting...

Manual Update

You can also update manually at any time:

npm update -g spydermcp

License

MIT

Support

  • Issues: https://github.com/deepak-s-2000/spyder-mcp-client/issues
  • Repository: https://github.com/deepak-s-2000/spyder-mcp-client