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

@deploxy/proxy

v0.0.9

Published

Run MCP stdio servers over Streamable HTTP

Readme

Deploxy

Deploxy is a serverless platform designed to host and manage your Stdio-based MCP servers. With Deploxy, you can focus on implementing your core business logic within a standard Stdio MCP server. Once deployed, your code is hosted in a serverless environment and exposed via a secure Streamable HTTP URL. Your distributed package is then transformed into a lightweight client that proxies requests to your hosted server.

Example

Your Code (The Logic You Write)

// (Your Stdio MCP server code)

// With Deploxy, your business logic lives in one place:
// your Stdio server. No more building a separate API backend
// just to handle secure tool calls

server.setRequestHandler(CallToolRequestSchema, async (request) => {
  const toolName = request.params.name
  const apiKey = request.params.arguments.apiKey

  if (toolName === 'awesome-tool') {
    // ✅ Your logic is simple, direct, and 100% secure on Deploxy
    const toolResult = await awesomeTool()
    // You can connect DB directly. code running on Deploxy cloud
    await deductCredit(apiKey)
    return toolResult
  }
})

async function main() {
  const transport = new StdioServerTransport()
  await server.connect(transport)
}

// That's it. You write this simple, intuitive code
// We handle the magic of securing it in the cloud
main()

User's Code (The Proxy We Distribute)

// (Your Distributed package code)

// When you deploy, we automatically transform your package.
// Your users download and run this secure, lightweight proxy client,
// while your original code stays safe on our servers.

// To the end-user, nothing changes. They run the same command:
// $ npx @your-org/mcp-server --your-args "user-api-key"

function main() {
  const stdioArgs = getArgsFromCmd()
  const headers = getPreBuiltHeaders()
  const stdioMcpServer = spawn(
    'npx',
    [
      '-y',
      '@deploxy/proxy',
      'https://your-proxy.deploxy.com', // Your secure logic endpoint
      '--headers',
      ...headers,
      '--stdio-args',
      ...stdioArgs,
    ],
    { stdio: 'inherit' },
  )
}

// This User-Facing Proxy -> [ DEPLOXY MAGIC ] -> Your Code
main()

Usage

You can run @deploxy/proxy directly using npx. Here is the basic command structure for connecting to a remote MCP server:

npx -y @deploxy/proxy "https://your-proxy-url.com" --headers "Content-Type: application/json" --stdio-args "example-api-key" "example-args"
  • <url>: The endpoint URL of the remote Streamable HTTP MCP server you want to connect to.
  • --headers: Specifies HTTP headers to include in requests sent to the remote server. This is useful for passing authentication tokens or other metadata.
  • --stdio-args: Arguments that will be passed to the stdio-based command running through the proxy.

MCP Client Configs

@deploxy/proxy can be easily integrated with any MCP-compliant client, such as Claude Desktop or Cursor IDE.

Claude Desktop

You can register the remote MCP server by adding the following configuration to your Claude Desktop settings file:

{
  "mcpServers": {
    "deploxy-proxy": {
      "command": "npx",
      "args": [
        "-y",
        "@deploxy/proxy",
        "https://your-mcp-server.example.com",
        "--headers",
        "Authorization: Bearer YOUR_ACCESS_TOKEN",
        "--stdio-args",
        "Custosm stdio args1",
        "Custosm stdio args2",
        "..."
      ]
    }
  }
}

Cursor IDE

Cursor IDE can be configured in a similar way. Add the following to your mcp configs file:

{
  "mcpServers": {
    "deploxy-proxy": {
      "command": "npx",
      "args": [
        "-y",
        "@deploxy/proxy",
        "https://your-mcp-server.example.com",
        "--headers",
        "Authorization: Bearer YOUR_ACCESS_TOKEN",
        "--stdio-args",
        "Custosm stdio args1",
        "Custosm stdio args2",
        "..."
      ]
    }
  }
}