MCP Stdio to SSE Proxy
Acts as a proxy to the SwiftZilla MCP server, facilitating access to Swift development resources and tools through a remote Server-Sent Events (SSE) connection.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Stdio to SSE Proxysearch for the latest SwiftUI documentation on NavigationStack"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Stdio to SSE Proxy
This project implements a Model Context Protocol (MCP) server that acts as a proxy between a local Stdio connection and a remote MCP server running over Server-Sent Events (SSE).
It is specifically configured to proxy to https://swiftzilla.dev/mcp/sse.
Usage
Prerequisites
Node.js installed.
An API Key for SwiftZilla (if required by the server).
Running via npx
You can run this proxy directly using npx (once published or installed locally). You can pass the API key via environment variable or command-line argument:
# Using environment variable
API_KEY="your-api-key" npx mcp-stdio-proxy
# Using command-line argument
npx mcp-stdio-proxy --api-key "your-api-key"Configuration (Claude Desktop, etc.)
To use this with an MCP client like Claude Desktop, add the following to your mcp.json config:
{
"mcpServers": {
"swiftzilla": {
"command": "npx",
"args": ["-y", "@swiftzilla/mcp", "--api-key", "${API_KEY}"]
}
}
}Related MCP server: mcp-remote-py
Development
Install dependencies:
npm installBuild:
npm run buildRun locally:
node dist/index.js
This server cannot be deployed
Maintenance
Related MCP Connectors
Enable secure connectivity between Sentry issues and debugging data, and LLM clients, using a Model Context Protocol (MCP) server.
Remote MCP server exposing SMI Aware tools, resources, and skills over Streamable HTTP.
Model Context Protocol server for Studex tools, notifications, and profile integrations
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceBridges STDIO-based MCP clients with SSE-based MCP servers, allowing applications like Claude Desktop to connect to remote MCP servers that use SSE transport.9-
- FlicenseNot gradedqualityDmaintenanceA minimal Python-based proxy that bridges local MCP STDIO clients with remote MCP SSE servers. It enables bidirectional JSON-RPC message passing between standard command-line tools and web-based remote endpoints.1-
- FlicenseNot gradedqualityDmaintenanceA Node.js proxy that enables communication between stdio-based clients and HTTP-based Model Context Protocol servers. It facilitates protocol translation, session management, and authentication to allow remote HTTP servers to function as local stdio servers.-
- AlicenseNot gradedqualityDmaintenanceExposes any stdio-based MCP server to the internet via HTTP/SSE transport, enabling remote agents to access MCP tools over a network.8MIT