Unified Auth0 MCP Server
An MCP server that enables Claude Code to access Auth0-protected APIs by handling OAuth authentication flows and securely proxying API requests with user credentials.
README
MCP Gateway
An OpenRouter API-authenticated MCP gateway that provides unified access to multiple public MCP servers and Claude models for Claude Code and Claude Desktop integration.
Architecture
mcp-gateway/
├── src/ # MCP Gateway source code
├── shared/ # Shared types and utilities
└── package.json # Single package configuration
Purpose
This MCP Gateway serves as a unified authenticated entry point to multiple public MCP servers and Claude models via OpenRouter, allowing Claude Code/Desktop users to:
- OpenRouter Integration: Access 400+ AI models including Claude 3.5 Sonnet and Claude 4 via OpenRouter API
- Cost-Effective: Pay-per-use model instead of multiple AI subscriptions
- Unified Interface: Access tools from multiple MCP servers through one connection
- Public Server Access: Connect to GitHub, filesystem, web search, and other public MCP servers
- Tool Aggregation: All tools available in one place with prefixed names to avoid conflicts
Connected Public MCP Servers
1. GitHub MCP Server
- Tools: Repository operations, issues, pull requests, code search
- Prefix:
github:(e.g.,github:search-repositories) - Authentication: Uses your OpenRouter API key
2. Filesystem MCP Server
- Tools: File operations, directory browsing, file content management
- Prefix:
fs:(e.g.,fs:read-file) - Authentication: Secure file access within allowed paths
3. Web Search MCP Server
- Tools: Web search, content retrieval, information gathering
- Prefix:
web:(e.g.,web:search) - Authentication: Rate-limited per API key
Gateway Tools
whoami- Show current user's OpenRouter API authentication statuslist-servers- List all connected public MCP serversgithub:*- All GitHub MCP server tools (proxied)fs:*- All filesystem MCP server tools (proxied)web:*- All web search MCP server tools (proxied)
Flow
- Claude Code connects to MCP Gateway with OpenRouter API key
- API Authentication - Gateway validates OpenRouter API key
- Model Access - Direct access to 400+ models via OpenRouter
- Tool calls - Gateway proxies tool calls to appropriate public MCP servers
- Responses aggregated - Responses from public servers and OpenRouter flow back to Claude Code
Setup
Prerequisites
- OpenRouter API key from https://openrouter.ai/keys
- Cloudflare account with Workers access
Development
# Install dependencies
npm install
# Start gateway in development
npm run dev # Gateway on localhost:8788
Deployment
# Deploy gateway to Cloudflare
npx wrangler deploy
# Set OpenRouter API key as secret
npx wrangler secret put OPENROUTER_API_KEY
OpenRouter Configuration
- Create an account at https://openrouter.ai
- Generate an API key at https://openrouter.ai/keys
- Load credits to your account (starts around $10 minimum)
- Set the API key in your Cloudflare Worker secrets
Claude Code Integration
Option 1: Direct Integration
Add to ~/.claude.json:
{
"mcpServers": {
"mcp-gateway": {
"command": "node",
"args": [
"/Users/adam/Projects/MCP Server/openrouter-mcp-client.js",
"https://mcp-gateway.marcean.workers.dev",
"YOUR_OPENROUTER_API_KEY_HERE"
]
}
}
}
Option 2: Environment Variable
Store your API key in environment:
export OPENROUTER_API_KEY="your-key-here"
Then use in ~/.claude.json:
{
"mcpServers": {
"mcp-gateway": {
"command": "node",
"args": [
"/Users/adam/Projects/MCP Server/openrouter-mcp-client.js",
"https://mcp-gateway.marcean.workers.dev"
],
"env": {
"OPENROUTER_API_KEY": "${OPENROUTER_API_KEY}"
}
}
}
}
Testing
Test the connection:
# Basic connection test
node test-openrouter-connection.js
# Full test with API key
node openrouter-mcp-client.js https://mcp-gateway.marcean.workers.dev YOUR_API_KEY
Security
- API protected by OpenRouter API key authentication
- CORS configured for secure browser access
- Environment variables stored as Cloudflare Worker secrets
- Rate limiting through OpenRouter's built-in limits
Cost Comparison
Traditional Subscriptions:
- Claude Pro: $20/month
- ChatGPT Plus: $20/month
- Other AI subscriptions: $10-50/month each
- Total: $50-100+/month
OpenRouter Alternative:
- Pay per actual usage
- Typical usage: $10-25 lasting 3-6 months
- Access to 400+ models including latest Claude versions
- Estimated: $2-8/month for typical usage
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.