@swiftzilla/mcp
v1.0.0
Published
A proxy server to bridge MCP Stdio to MCP SSE
Readme
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}"]
}
}
}Development
- Install dependencies:
npm install - Build:
npm run build - Run locally:
node dist/index.js
