🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@undisk-mcp/stdio-proxy

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@undisk-mcp/stdio-proxy

Bridges local stdio MCP clients to the remote Undisk MCP edge server

latest
npmnpm
Version
0.54.1
Version published
Weekly downloads
118
-27.16%
Maintainers
1
Weekly downloads
 
Created
Source

@undisk-mcp/stdio-proxy

Bridges local stdio MCP clients (like Claude Desktop) to the remote Undisk MCP edge server over Streamable HTTP.

Usage

npx -y @undisk-mcp/stdio-proxy

Or install globally:

npm install -g @undisk-mcp/stdio-proxy
undisk-proxy

Environment Variables

  • UNDISK_API_KEY — your Undisk MCP API key (required)
  • UNDISK_ENDPOINT — server endpoint (default: https://mcp.undisk.app)

Workspace Routing

To target a specific workspace, set UNDISK_ENDPOINT with a ?workspace= query parameter. Quote the URL to prevent your shell from interpreting the ?:

UNDISK_API_KEY=sk_live_xxx \
  UNDISK_ENDPOINT='https://mcp.undisk.app?workspace=YOUR_WORKSPACE_ID' \
  npx -y @undisk-mcp/stdio-proxy

OpenAI Codex

# Default workspace
codex mcp add undisk \
  --env UNDISK_API_KEY=sk_live_xxx \
  -- npx -y @undisk-mcp/stdio-proxy

# Specific workspace (quote the URL to avoid zsh glob errors)
codex mcp add undisk-myproject \
  --env UNDISK_API_KEY=sk_live_xxx \
  --env 'UNDISK_ENDPOINT=https://mcp.undisk.app?workspace=YOUR_WORKSPACE_ID' \
  -- npx -y @undisk-mcp/stdio-proxy

Claude Desktop

npx -y @undisk-mcp/setup-claude --api-key sk_live_xxx

Claude Code

claude mcp add --transport http undisk \
  'https://mcp.undisk.app/v1/mcp?workspace=YOUR_WORKSPACE_ID' \
  --header "Authorization: Bearer sk_live_xxx"

How It Works

The proxy reads JSON-RPC messages from stdin, forwards them to the Undisk MCP server via Streamable HTTP, and writes responses to stdout. This enables tools that only support local stdio transports (e.g., Claude Desktop) to connect to the remote Undisk MCP workspace.

License

MIT

Keywords

undisk

FAQs

Package last updated on 21 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts