mirror of
https://github.com/wso2/open-mcp-auth-proxy.git
synced 2025-06-27 17:13:31 +00:00
134 lines
4.5 KiB
Markdown
134 lines
4.5 KiB
Markdown
# 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](https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/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**
|
||
|
||
```bash
|
||
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
|
||
|
||
### Quick Start
|
||
|
||
Allows you to just enable authentication and authorization for your MCP server with the preconfigured auth provider powered by Asgardeo.
|
||
|
||
If you don’t have an MCP server, follow the instructions given here to start your own MCP server for testing purposes.
|
||
|
||
1. Navigate to `resources` directory.
|
||
2. Initialize a virtual environment.
|
||
|
||
```bash
|
||
python3 -m venv .venv
|
||
```
|
||
3. Activate virtual environment.
|
||
|
||
```bash
|
||
source .venv/bin/activate
|
||
```
|
||
|
||
4. Install dependencies.
|
||
|
||
```
|
||
pip3 install -r requirements.txt
|
||
```
|
||
|
||
5. Start the server.
|
||
|
||
```bash
|
||
python3 echo_server.py
|
||
```
|
||
|
||
#### Configure the Auth Proxy
|
||
|
||
Update the following parameters in `config.yaml`.
|
||
|
||
### demo mode configuration:
|
||
|
||
```yaml
|
||
mcp_server_base_url: "http://localhost:8000" # URL of your MCP server
|
||
listen_port: 8080 # Address where the proxy will listen
|
||
```
|
||
|
||
#### Start the Auth Proxy
|
||
|
||
```bash
|
||
./openmcpauthproxy --demo
|
||
```
|
||
|
||
The `--demo` flag enables a demonstration mode with pre-configured authentication and authorization with a sandbox powered by [Asgardeo](https://asgardeo.io/).
|
||
|
||
#### Connect Using an MCP Client
|
||
|
||
You can use this fork of the [MCP Inspector](https://github.com/shashimalcse/inspector) to test the connection and try out the complete authorization flow. (This is a temporary fork with fixes for authentication [issues](https://github.com/modelcontextprotocol/typescript-sdk/issues/257) in the original implementation)
|
||
|
||
### Use with Asgardeo
|
||
|
||
Enable authorization for the MCP server through your own Asgardeo organization
|
||
|
||
1. [Register]([url](https://asgardeo.io/signup)) and create an organization in Asgardeo
|
||
2. Now, you need to authorize the OpenMCPAuthProxy to allow dynamically registering MCP Clients as applications in your organization. To do that,
|
||
1. Create an [M2M application](https://wso2.com/asgardeo/docs/guides/applications/register-machine-to-machine-app/)
|
||
1. [Authorize this application](https://wso2.com/asgardeo/docs/guides/applications/register-machine-to-machine-app/#authorize-the-api-resources-for-the-app) to invoke “Application Management API” with the `internal_application_mgt_create` scope.
|
||

|
||
2. Note the **Client ID** and **Client secret** of this application. This is required by the auth proxy
|
||
|
||
#### Configure the Auth Proxy
|
||
|
||
Create a configuration file config.yaml with the following parameters:
|
||
|
||
```yaml
|
||
mcp_server_base_url: "http://localhost:8000" # URL of your MCP server
|
||
listen_port: 8080 # Address where the proxy will listen
|
||
|
||
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
|
||
|
||
```bash
|
||
./openmcpauthproxy --asgardeo
|
||
```
|
||
|
||
### Use with any standard OAuth Server
|
||
|
||
Enable authorization for the MCP server with a compliant OAuth server
|
||
|
||
#### Configuration
|
||
|
||
Create a configuration file config.yaml with the following parameters:
|
||
|
||
```yaml
|
||
mcp_server_base_url: "http://localhost:8000" # URL of your MCP server
|
||
listen_port: 8080 # Address where the proxy will listen
|
||
```
|
||
**TODO**: Update the configs for a standard OAuth Server.
|
||
|
||
#### Start the Auth Proxy
|
||
|
||
```bash
|
||
./openmcpauthproxy
|
||
```
|
||
#### Integrating with existing OAuth Providers
|
||
|
||
- [Auth0](docs/Auth0.md) - Enable authorization for the MCP server through your Auth0 organization.
|