
MCP Gateway
Turn APIs into MCP endpoints,without changing a line of code
35 followers
Turn APIs into MCP endpoints,without changing a line of code
35 followers
🧩 MCP Gateway - A lightweight gateway service that instantly transforms existing APIs into MCP servers with zero code changes. Features Docker deployment and management UI, requiring no infrastructure modifications. - mcp-ecosystem/mcp-gateway







As the MCP ecosystem continues to grow, more projects and B2B services are starting to adopt MCP.
When MCP is truly applied in production environments, adapting and integrating existing API services will inevitably become a challenge — often requiring significant engineering and system investments.
That’s why I believe there is a real need for an “Nginx-like” reverse proxy at the MCP layer — a tool that enables individuals and businesses to quickly connect their existing APIs into the MCP ecosystem at low cost, allowing them to validate ideas and markets without heavy upfront refactoring.
Currently, Higress is the major gateway solution supporting MCP, and it demonstrates strong technical advantages in large-scale scenarios. However, in terms of access cost, documentation maturity, and development flexibility, it may pose a higher barrier for some projects — especially when second development is needed, given the complexity of the Istio/Envoy/Wasm stack.
Based on this background, I built and open-sourced MCP Gateway — a lightweight, platform-neutral, and low-overhead MCP gateway that can be quickly deployed on local machines, standalone servers, or Kubernetes. Through simple configuration, you can easily transform existing API services into MCP servers.
The future of this market is still uncertain, but I truly believe building a tool that fills this gap and lowers the adoption barrier is something meaningful.
You’re warmly welcome to try it out — and I’d love to hear your feedback and suggestions! ❤️
@ifuryst Congratulations on the Launch.
@matteo_rider Thanks a lot, Matteo!❤️
This is such a brilliant idea effortless API transformation without any code changes is a massive win for agile teams. Does it come with built-in support for rate limiting or caching, or would that need to be managed separately?
@daniel_reed3 Hi Daniel, thanks so much for your kind words!
Regarding rate limiting, it’s not built-in yet, but it’s already on our roadmap.
We’re rapidly iterating on high-availability features to ensure MCP Gateway is stable and reliable for production use, and rate limiting is part of this plan.
As for caching, could you clarify which kind of caching you’re referring to? I’d love to hear more, and if it fits, I’ll make sure to include it in our roadmap as well! 😄
This feels like a fantastic upgrade for API-driven systems. The seamless deployment and Docker support make it a no-brainer for development teams eager to integrate MCP without any hassle.
@carlos_finley Hi Carlos, thanks for your feedback!
You’re absolutely right. I believe this is a major gap in the current market. While MCP adoption today is still mostly client-side, with many MCP Servers implementations focusing on stdio, we’re confident that as the protocol matures, server-side applications — especially over SSE and Streamable HTTP — will become much more common.
In fact, we’re already seeing Anthropic actively evolving the MCP spec to better support server-side and enterprise production use cases, which is very encouraging for the ecosystem overall.
Is the transformation process instantaneous or does MCP Gateway need any schema tweaks before an API is ready for MCP?
@matteo_rider Hi Matteo, thanks for the great question!
No modifications are needed on your existing API — you just need to set up some simple configurations.
You can check out an example I shared here:
https://www.producthunt.com/posts/mcp-gateway?comment=4563701
Since MCP Gateway requires no code changes how does it maintain API compatibility across different versions?
Can it automatically adapt to breaking changes in the underlying API?
@grayson_parker2 Hi Grayson, great question!
MCP Gateway operates at the protocol translation layer and is non-intrusive — it simply forwards and transforms requests without interfering with the underlying API logic.
For example, if your API evolves from /api/v1/users/ to /api/v2/users/, you can easily configure MCP Gateway to route them separately based on their paths.
BTW, there’s a small trick here: when LLMs interact with similar API definitions, they might get confused about which version to use, especially if the descriptions are not clearly distinguished. Handling LLM-side ambiguity goes beyond the scope of MCP Gateway itself, but it’s something to be aware of when designing multi-version APIs.
Hope this helps!
@ifuryst Is the transformation process instantaneous or does MCP Gateway need any schema tweaks before an API is ready for MCP?
@brooklyn_campbell Hi Brooklyn, thanks for reaching out!
No modifications are needed on your existing API. You just need to set up some simple configurations.
For example, you can call your API directly like:
and get a normal response:
Then, with minimal configuration, like this:
MCP Gateway can expose it directly as:
On the MCP client side (for example in Cursor), you can easily configure it like this:
That's it 😎