5.4 KiB
Open MCP Auth Proxy
The Open MCP Auth Proxy is a lightweight proxy designed to sit in front of MCP servers and enforce authorization in compliance with the Model Context Protocol authorization requirements. It intercepts incoming requests, validates tokens, and offloads authentication and authorization to an OAuth-compliant Identity Provider.
Setup and Installation
Prerequisites
- Go 1.20 or higher
- A running MCP server (SSE transport supported)
- An MCP client that supports MCP authorization
Installation
git clone https://github.com/wso2/open-mcp-auth-proxy
cd open-mcp-auth-proxy
go get github.com/golang-jwt/jwt/v4
go get gopkg.in/yaml.v2
go build -o openmcpauthproxy ./cmd/proxy
Using Open MCP Auth Proxy
Transport Modes
The Open MCP Auth Proxy supports two transport modes:
- SSE Mode (Default): For MCP servers that use Server-Sent Events transport
- stdio Mode: For MCP servers that use stdio transport, which requires starting a subprocess
You can specify the transport mode in the config.yaml
file:
transport_mode: "sse" # Options: "sse" or "stdio"
Or use the --stdio
flag to override the configuration:
./openmcpauthproxy --stdio
Configuration
The configuration uses a unified structure with common settings and transport-specific options:
# Common configuration
listen_port: 8080
base_url: "http://localhost:8000" # Base URL for the MCP server
port: 8000 # Port for the MCP server
# Path configuration
paths:
sse: "/sse" # SSE endpoint path
messages: "/messages" # Messages endpoint path
# Transport mode configuration
transport_mode: "sse" # Options: "sse" or "stdio"
# stdio-specific configuration (used only when transport_mode is "stdio")
stdio:
enabled: true
user_command: "npx -y @modelcontextprotocol/server-github"
work_dir: "" # Working directory (optional)
Notes:
- In SSE mode, the proxy connects to an external MCP server at the specified
base_url
- In stdio mode, the proxy starts a subprocess using the
stdio.user_command
configuration - Common settings like
base_url
,port
, andpaths
are used for both transport modes
Quick Start
If you don't have an MCP server, follow the instructions given here to start your own MCP server for testing purposes.
- Navigate to
resources
directory. - Initialize a virtual environment.
python3 -m venv .venv
- Activate virtual environment.
source .venv/bin/activate
- Install dependencies.
pip3 install -r requirements.txt
- Start the server.
python3 echo_server.py
Configure the Auth Proxy
Update the necessary parameters in config.yaml
as shown in the examples above.
Start the Auth Proxy
For the demo mode with pre-configured authentication:
./openmcpauthproxy --demo
For standard mode:
./openmcpauthproxy
For stdio mode:
./openmcpauthproxy --stdio
The --demo
flag enables a demonstration mode with pre-configured authentication and authorization with a sandbox powered by Asgardeo.
Connect Using an MCP Client
You can use this fork of the MCP Inspector to test the connection and try out the complete authorization flow. (This is a temporary fork with fixes for authentication issues in the original implementation)
Use with Asgardeo
Enable authorization for the MCP server through your own Asgardeo organization
- Register and create an organization in Asgardeo
- Now, you need to authorize the OpenMCPAuthProxy to allow dynamically registering MCP Clients as applications in your organization. To do that,
- Create an M2M application
- Authorize this application to invoke "Application Management API" with the
internal_application_mgt_create
scope. - Note the Client ID and Client secret of this application. This is required by the auth proxy
- Authorize this application to invoke "Application Management API" with the
- Create an M2M application
Configure the Auth Proxy
Create a configuration file config.yaml with the following parameters:
# Common configuration
listen_port: 8080
base_url: "http://localhost:8000" # Base URL for the MCP server
# Path configuration
paths:
sse: "/sse"
messages: "/messages"
# Transport mode
transport_mode: "sse" # or "stdio"
asgardeo:
org_name: "<org_name>" # Your Asgardeo org name
client_id: "<client_id>" # Client ID of the M2M app
client_secret: "<client_secret>" # Client secret of the M2M app
Start the Auth Proxy
./openmcpauthproxy --asgardeo
Integrating with existing OAuth Providers
- Auth0 - Enable authorization for the MCP server through your Auth0 organization.