Toolport: A Local Gateway to Manage MCP Servers Once Across All Apps

If you use MCP servers across multiple AI coding tools, you're likely maintaining separate config files with API keys in plaintext JSON. Toolport is a free, open-source desktop app and local gateway that fixes this: you add a server once, toggle it on per client, and every app sees the same set.
Key Features
- Centralized management: Add a server once, enable it per client (Claude Desktop, Claude Code, Cursor, etc.)
- Secure key storage: API keys are stored in the OS keychain instead of config files
- Safety layer: Destructive tool calls can pause for your approval — you get a desktop notification, and denying actually blocks the call. If a server's tool definitions change unexpectedly, it gets quarantined until you review
Build Process
The creator, u/kydude, used Claude Code to write nearly all the code: the Rust gateway, the Tauri/React desktop app, test suites, and CI. Key lessons from the build:
- Give it an invariant, not instructions: E.g., "no request may block another, prove it with a load test" produced better results than step-by-step directions
- Have it audit its own work: Running separate review sessions against code from earlier sessions caught real bugs the original session missed
- Make it earn its claims: When Claude claimed the gateway saved tokens, the author had it build a benchmark harness. Results showed up to 91% fewer tool tokens on large server sets with lazy discovery
Toolport is free and open source, currently supporting Claude Desktop and Claude Code on Windows, Mac, and Linux. The paid team tier (shared server sets for teams) is separate — the free part is the whole point. GitHub: github.com/tsouth89/toolport
Who It's For
Developers and AI agent users who maintain multiple MCP servers across different apps and want a unified, secure configuration workflow.
📖 Read the full source: r/ClaudeAI
👀 See Also

Open Source Curated Collection of OpenClaw Resources Unveiled
Discover a new open-source collection of OpenClaw resources, curated by the community to enhance AI development and collaboration.

CopilotKit: Open-Source React Building Blocks for Agent UIs
CopilotKit (30k stars, MIT) provides React components for agent UI layer: chat, streaming, tool calls, human-in-the-loop, and generative UI, with AG-UI protocol support across LangGraph, ADK, CrewAI, and more.

Agents Elements: A macOS Dashboard for Claude Code & Codex Installations
A native SwiftUI macOS app that scans ~/.claude and ~/.codex to show installed skills, subagents, commands, plugins, MCP servers, hooks, and session status with token usage.

Open Source Auto-Memory System for LLM Agents Achieves 94% Recall Accuracy
A developer built a memory plugin for LLM-based agents that automatically extracts, classifies, and persists facts across sessions without explicit user commands. The system achieved 94.2% accuracy on a 52-checkpoint recall benchmark using structured markdown files instead of vector databases.