MCP Gateway for Secure Remote Access to Internal Tools

OpenZiti has released an MCP gateway that enables secure access to internal MCP tool servers from remote locations without exposing any public endpoints. The solution aggregates multiple MCP backends into a single connection and namespaces tools to prevent collisions.
How It Works
The gateway runs over a zero-trust overlay using OpenZiti and zrok, meaning nothing listens on a public address. Clients connect using a zrok share token and receive isolated sessions. This approach eliminates the need for opening ports, setting up SSH tunnels, or running a VPN.
Configuration
Claude Desktop configuration requires just one entry in the mcpServers section. The configuration provides fine-grained selection of tools from aggregated servers.
{
"mcpServers": {
"gateway": {
"command": "mcp-tools",
"args": ["run", "<share-token>"]
}
}
}Practical Use Case
The developer at NetFoundry uses this daily for accessing internal resources like data warehouses across their 100% remote workforce. The gateway allows team members to access MCP servers running on various machines from their laptops through a single MCP connection.
The project is available under the Apache 2.0 license and can be found on GitHub. The developer invites others to share their approaches to remote MCP access with Claude Desktop.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code adds agent team-based review system in research preview
Claude Code now includes a thorough code review system modeled on Anthropic's internal process, using agent teams. The feature is available in research preview.

Yavio: Open-Source Product Analytics SDK for MCP Apps
Yavio is an open-source product analytics SDK for MCP and MCP Apps that automatically captures tool calls, errors, and resource reads with one function call. The MIT-licensed project provides a dashboard with per-tool breakdowns, funnels, retention, and error tracking.

Signet: Open-Source Memory Layer for AI Coding Agents Hits 80% F1 on LoCoMo
Signet is an open-source memory system for AI coding agents that achieves 80% F1 on the LoCoMo benchmark, compared to 41% for standard RAG. It extracts memories after each session and injects relevant context before prompts, running locally with SQLite.

Open-Source Web UI for Parallel Claude Code Sessions Using Git Worktree
A developer has built an open-source web UI called CCUI that enables running multiple Claude Code sessions in parallel using git worktree. It runs as a local web server accessible via browser and supports SSH port forwarding for remote development.