MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

proxy for Model Context Protocol (MCP) servers that adds authentication, authorization, and enterprise features to any MCP backend.

创建于 8/16/2025
更新于 5 months ago
Repository documentation and setup instructions

MCP Proxy

GitHub go.mod Go version (subdirectory of monorepo) GitHub

YouTube Channel Subscribers GitHub followers X (formerly Twitter) Follow

A proxy for Model Context Protocol (MCP) servers that adds authentication, authorization, and enterprise features to any MCP backend. Transform your local MCP servers into secure, scalable services ready for remote access.

Motivation

MCP servers are often developed for local use with stdio transport, making them unsuitable for production environments where remote access, authentication, and scalability are required. MCP Proxy bridges this gap by providing a layer in front of any MCP server, enabling enterprise deployment while preserving the original MCP functionality.

Features

  • 🔐 OAuth RFC 8414 and RFC 9728 compliant

  • Support for .well-known/oauth-protected-resource and .well-known/oauth-authorization-server endpoints

  • Both endpoints are configurable

  • 🛡️ Several JWT validation methods

  • Delegated to external systems like Istio

  • Locally validated based on JWKS URI and CEL expressions for claims

  • 🔄 Transport bridging

  • Accept StreamableHTTP and Stdio requests and forward to HTTP or stdio MCP backends

  • Enable remote access to local MCP servers

  • 📋 Access logs can exclude or redact fields

  • 🚀 Production-ready: Included full examples, Dockerfile, Helm Chart and GitHub Actions for CI

  • ⚡ Super easy to extend: Production vitamins added to a good juice: mcp-go

Deployment

Production 🚀

Deploy to Kubernetes using the Helm chart located in the chart/ directory.

How to develop your MCP

Prerequisites

  • Go 1.24+

Modify the code and run

Modify the entire codebase and execute make run

Note: Default YAML config executing the previous command start the server as an HTTP server forwarding to a Stdio server. Other needs? just modify the Makefile to use other YAML provided in examples.

Configuration Examples

Several configuration examples are available here

🤝 Contributing

All contributions are welcome! Whether you're reporting bugs, suggesting features, or submitting code — thank you! Here’s how to get involved:

Open an issue to report bugs or request features

Submit a pull request to contribute improvements

📄 License

MCP Proxy is licensed under the Apache 2.0 License.

快速设置
此服务器的安装指南

安装命令 (包未发布)

git clone https://github.com/achetronic/mcp-proxy
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。

Cursor 配置 (mcp.json)

{ "mcpServers": { "achetronic-mcp-proxy": { "command": "git", "args": [ "clone", "https://github.com/achetronic/mcp-proxy" ] } } }