Skip to main content
Glama
SunilAngadala

MCP OAuth Proxy

MCP OAuth Proxy

An OAuth 2.0 / 2.1 Proxy for HTTP Model Context Protocol (MCP) servers. This proxy acts as a secure, authenticated gateway enabling integration between downstream MCP servers and client platforms like Claude Web (Custom Connectors), Claude Desktop, and OpenAI ChatGPT (Custom Actions).


Features

  • Standard OAuth 2.0 / 2.1 Flow:

    • /oauth/authorize Authorization endpoint with PKCE validation support and a consent screen.

    • /oauth/token token endpoint supporting authorization_code, client_credentials, and refresh_token flows.

    • In-memory session and token storage.

  • SSE Connection Transport:

    • Compliant /mcp/sse and /mcp/message stream transport endpoints for standard clients.

    • Dynamically constructs absolute URLs for message endpoints behind proxies.

  • OpenAPI Action Bridge:

    • Dynamically compiles tools from the downstream MCP server into a standard OpenAPI 3.0 specification via /openapi.json.

    • Maps tool-call executions to RESTful endpoints at /api/tools/call/:toolName.

  • Robust Downstream Parsing:

    • Integrates with downstream endpoints using static tokens (e.g. LtpaToken).

    • Automatically handles downstream self-signed/corporate certificate authority validation issues (REJECT_UNAUTHORIZED).

    • Seamlessly extracts JSON-RPC payloads from downstream SSE-framed strings.


Related MCP server: openclaw-mcp

Setup & Local Development

1. Installation

Clone the repository and install dependencies:

npm install

2. Environment Configuration

Create a .env file in the root directory (based on the provided template):

PORT=3000
DOWNSTREAM_MCP_URL=https://<your-downstream-mcp-server-domain>/mcp
LTPA_TOKEN=<your-downstream-authentication-token>
OAUTH_CLIENT_ID=mcp-client-id
OAUTH_CLIENT_SECRET=mcp-client-secret
REJECT_UNAUTHORIZED=false

3. Start the Server

npm run dev

4. Running Integration Tests

Start the server, and in a separate terminal run the HTTP and SSE test suites:

# Test OAuth flow, REST mapping, and OpenAPI generation
node test-proxy.js

# Test long-lived SSE streaming and message forwarding
node test-sse.js

Deployment to Render

  1. Create a new Web Service on Render connected to your GitHub repository.

  2. Select the Node environment, set Build Command to npm install, and Start Command to npm start.

  3. Use the Add from .env button in the Environment Variables section and paste your local .env values.

  4. Once deployed, note your service's live URL (e.g. https://your-service.onrender.com).


Client Integration Guides

1. Claude Web (Custom Connectors)

In your claude.ai dashboard under Connectors -> Add Custom Connector:

  • Name: MCP OAuth Proxy

  • Remote MCP server URL: https://<your-render-url>/mcp/sse

  • OAuth Client ID: mcp-client-id

  • OAuth Client Secret: mcp-client-secret Click Add, complete the OAuth consent screen prompt, and Claude will automatically link the downstream tools.

2. Claude Desktop (Local Bridge)

  1. Request a client credentials token:

    curl -X POST https://<your-render-url>/oauth/token \
      -H "Content-Type: application/json" \
      -d '{"grant_type":"client_credentials","client_id":"mcp-client-id","client_secret":"mcp-client-secret"}'
  2. Open your claude_desktop_config.json:

    • Windows: %APPDATA%\Claude\claude_desktop_config.json

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  3. Add the server block using the @modelcontextprotocol/client-cli stdio-to-SSE bridge:

    {
      "mcpServers": {
        "mcp-oauth-proxy": {
          "command": "npx",
          "args": [
            "-y",
            "@modelcontextprotocol/client-cli",
            "https://<your-render-url>/mcp/sse?token=YOUR_ACCESS_TOKEN"
          ]
        }
      }
    }
  4. Restart Claude Desktop.

3. OpenAI ChatGPT (Custom Actions)

In your Custom GPT configure editor under Actions:

  1. Click Import from URL and paste: https://<your-render-url>/openapi.json.

  2. Under Authentication, select OAuth:

    • Client ID: mcp-client-id

    • Client Secret: mcp-client-secret

    • Authorization URL: https://<your-render-url>/oauth/authorize

    • Token URL: https://<your-render-url>/oauth/token

  3. Save the GPT and trigger a tool call to start the OAuth sign-in flow.

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SunilAngadala/mcp-oauth-proxy'

If you have feedback or need assistance with the MCP directory API, please join our Discord server