MCP ExplorerExplorer

Mcp Front

@dgellowon 16 days ago
1 MIT
FreeCommunity
AI Systems
OAuth 2.1 proxy for secure Claude.ai integration with MCP servers.

Overview

What is Mcp Front

mcp-front is a production-ready OAuth 2.1 authentication proxy designed for multiple MCP (Model Context Protocol) servers. It facilitates secure integration with Claude.ai, ensuring comprehensive testing and authentication management.

Use cases

Use cases for mcp-front include secure data access for applications integrating with various MCP servers, managing user authentication seamlessly across multiple services, and enabling secure API interactions in cloud-based environments.

How to use

To use mcp-front, configure a config.json file based on config-oauth.json, setting up the necessary OAuth credentials and MCP server details. Users authenticate via Google OAuth, and mcp-front handles token issuance and validation for secure access to MCP servers.

Key features

Key features of mcp-front include OAuth 2.1 authentication with PKCE, GCP IAM domain validation, single authenticated endpoint for multiple MCP servers, and support for bearer tokens to streamline user authentication.

Where to use

mcp-front is suitable for environments requiring secure integration between applications like Claude.ai and multiple MCP servers, particularly in enterprise settings where OAuth 2.1 is a requirement.

Content

mcp-front MCP Front

Docker image with tag latest
Docker image with tag docker-client-latest

This project is a work in progress and should not be considered production ready.
Though I’m fairly confident the overall architecture is sound, and I myself rely on the implementation — so it should work :tm:.
But it’s definitely alpha software :)

Also, don’t rely too much on the docs, they drift fairly quickly, I do not always keep them updated when doing changes or adding/removing features. They are mostly here to anchor me and help me stay focus on my initial vision.

OAuth 2.1 proxy for MCP (Model Context Protocol) servers. Authenticate once with Google, access all your MCP tools in Claude.ai.

mcp-front Architecture

What is mcp-front?

mcp-front is an authentication proxy that sits between Claude.ai and your MCP servers. It provides:

  • Single sign-on via Google OAuth for all MCP tools
  • Domain validation to restrict access to your organization
  • Per-user tokens for services like Notion
  • Session isolation so multiple users can share infrastructure

Why use mcp-front?

Without mcp-front, each MCP server needs its own authentication, which isn’t trivial — or need to be public.

With mcp-front:

  • Users authenticate once with their Google account
  • Access is restricted to your company domain
  • MCP servers can run in secure environments (databases, internal APIs)
  • Sessions are isolated between users
  • You get a simple, unified setup to run pretty much any MCP server found on Docker Hub

How it works

  1. Claude.ai connects to https://your-domain.com/<service>/sse
  2. mcp-front validates the user’s OAuth token
  3. If the server needs a user token, prompts via /my/tokens
  4. Proxies requests to the configured MCP server
  5. For stdio servers, each user gets an isolated process

Quick start

  1. Create config.json:
{
  "version": "v0.0.1-DEV_EDITION_EXPECT_CHANGES",
  "proxy": {
    "baseURL": "https://mcp.yourcompany.com",
    "addr": ":8080",
    "auth": {
      "kind": "oauth",
      "issuer": "https://mcp.yourcompany.com",
      "allowedDomains": [
        "yourcompany.com"
      ],
      "allowedOrigins": [
        "https://claude.ai"
      ],
      "tokenTtl": "1h",
      "storage": "memory",
      "googleClientId": {
        "$env": "GOOGLE_CLIENT_ID"
      },
      "googleClientSecret": {
        "$env": "GOOGLE_CLIENT_SECRET"
      },
      "googleRedirectUri": "https://mcp.yourcompany.com/oauth/callback",
      "jwtSecret": {
        "$env": "JWT_SECRET"
      },
      "encryptionKey": {
        "$env": "ENCRYPTION_KEY"
      }
    }
  },
  "mcpServers": {
    "postgres": {
      "transportType": "stdio",
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/postgres:latest",
        {
          "$env": "DATABASE_URL"
        }
      ]
    }
  }
}
  1. Set environment variables:
export GOOGLE_CLIENT_ID="your-oauth-client-id"
export GOOGLE_CLIENT_SECRET="your-oauth-client-secret"
export JWT_SECRET="your-32-byte-jwt-secret-for-oauth!"
export ENCRYPTION_KEY="your-32-byte-encryption-key-here!"
export DATABASE_URL="postgresql://user:pass@host:5432/db"
  1. Run mcp-front:
docker run -d -p 8080:8080 \
  -e GOOGLE_CLIENT_ID -e GOOGLE_CLIENT_SECRET \
  -e JWT_SECRET -e ENCRYPTION_KEY -e DATABASE_URL \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -v $(pwd)/config.json:/app/config.json \
  dgellow/mcp-front:docker-client-latest
  1. Add to Claude.ai: https://mcp.yourcompany.com/postgres/sse

Endpoints

MCP endpoints

  • /<service>/sse - Server-sent events for MCP communication
  • /<service>/message - Message handling for MCP requests

User endpoints

  • /my/tokens - Browser-based token management for per-user MCP server tokens

OAuth endpoints

  • /.well-known/oauth-authorization-server - OAuth discovery
  • /authorize - OAuth authorization
  • /token - Token exchange
  • /oauth/callback - Google OAuth callback
  • /register - Dynamic client registration

Configuration

Google OAuth setup

  1. Create OAuth client in Google Cloud Console
  2. Set redirect URI: https://your-domain.com/oauth/callback
  3. Save Client ID and Secret

Environment variable formats

mcp-front uses explicit JSON syntax {"$env": "VAR_NAME"} for environment variables throughout its configuration. This deliberate choice eliminates the ambiguity and risks inherent in shell-style variable substitution. When configs pass through multiple layers of tooling and scripts, traditional $VAR syntax can expand unexpectedly, causing security issues and debugging nightmares. The JSON format ensures your configuration remains exactly as written until mcp-front processes it, providing predictable behavior across all deployment environments. For per-user authentication, {"$userToken": "{{token}}"} follows the same principle, keeping user credentials cleanly separated from system configuration.

Per-user tokens

Some MCP servers are better to use with each users having their own integration token (e.g., Notion). Configure with:

{
  "notion": {
    "transportType": "stdio",
    "requiresUserToken": true,
    "tokenSetup": {
      "displayName": "Notion Integration Token",
      "instructions": "Create an integration and copy the token",
      "helpUrl": "https://www.notion.so/my-integrations"
    },
    "command": "docker",
    "args": [
      "run",
      "--rm",
      "-i",
      "-e",
      "OPENAPI_MCP_HEADERS",
      "mcp/notion:latest"
    ],
    "env": {
      "OPENAPI_MCP_HEADERS": {
        "$userToken": "{\"Authorization\": \"Bearer {{token}}\"}"
      }
    }
  }
}

After the initial OAuth authentication, when users try to use Claude.ai with the integration they will be prompted to
provide a token via the /my/tokens web UI.

Full configuration example

See config-oauth.json for a complete example with multiple MCP servers.

Security

  • OAuth 2.1 with PKCE required for all flows
  • Google Workspace domain validation
  • Encrypted session cookies (AES-256-GCM)
  • Per-user session isolation for stdio servers

⚠️ Note: mcp-front handles authentication only. Each MCP server is responsible for its own input validation and
security. Only use MCP servers that you trust and be careful when providing them with sensitive data.

Storage options

  • Memory (default): Fast, data lost on restart
  • Firestore: Persistent storage for production

For Firestore, add to your auth config:

Development

# Run tests
cd integration && go test -v

# Development mode (relaxed OAuth validation)
export MCP_FRONT_ENV=development

License

Copyright 2025 Samuel “dgellow” El-Borai

Tools

No tools

Comments