JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17
  • Score
    100M100P100Q82357F
  • License MIT

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

Package Exports

  • spydermcp
  • spydermcp/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (spydermcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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
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