Releases: gpimthong/mcp-gw
Releases · gpimthong/mcp-gw
Release list
v0.1.0 — Initial release
MCP Gateway v0.1.0
First release. Aggregating MCP gateway that lets Claude Code connect to one HTTP endpoint and use tools from multiple backend MCP servers.
Features
- Streamable HTTP MCP server — session-managed, supports multiple concurrent Claude Code connections
- Backend aggregation — HTTP and SSE backend transports; tools namespaced as
backend__tool_name - Persistent config — backends saved to
config/backends.json, reconnect on restart - Live dashboard — dark terminal UI with backend status cards, real-time request log, and tool catalog
- REST API — add/remove/reconnect backends at runtime without restart
- 30-second heartbeat — latency tracking per backend, auto-marks disconnected
Quick start
```bash
git clone https://github.com/gpimthong/mcp-gw
cd mcp-gw
docker compose up -d
```
Add to ~/.mcp.json:
```json
{
"mcpServers": {
"gateway": { "type": "http", "url": "http://localhost:3000/mcp" }
}
}
```