MCP Client Integration
Learn how to connect various MCP clients to your authenticated MCP server.
Supported Clients
MCP Auth Proxy has been verified to work with all major MCP clients:
MCP Client | Status | Notes |
---|---|---|
Claude (Web) | ✅ | Full compatibility |
Claude (Desktop) | ✅ | Full compatibility |
Claude Code | ✅ | Full compatibility |
ChatGPT (Web) | ✅ | Requires search and fetch tools |
ChatGPT (Desktop) | ✅ | Requires search and fetch tools |
GitHub Copilot | ✅ | Full compatibility |
Cursor | ✅ | Full compatibility |
Claude Integration
Claude Desktop & Web
- Go to Claude Settings → Connectors
- Add custom connector
- Enter URL:
https://{your-domain}/mcp
- You'll be redirected to authenticate
Claude Code
Configure in .mcp.json
:
{
"mcpServers": {
"my-protected-server": {
"url": "https://{your-domain}/mcp"
}
}
}
ChatGPT Integration
Prerequisites
ChatGPT requires your MCP server to implement search
and fetch
tools.
Configuration
- Go to ChatGPT Settings → Connectors
- Create
- Fill in the form:
- MCP Server URL:
https://{your-domain}/mcp
- Authentication: OAuth
- MCP Server URL:
- Complete authentication flow
GitHub Copilot Integration
VS Code Extension
Configure in .vscode/mcp.json
:
{
"servers": {
"my-protected-server": {
"url": "https://{your-domain}/mcp",
"type": "http"
}
},
"inputs": []
}
Cursor Integration
Configuration
Configure in Cursor settings:
{
"mcpServers": {
"my-protected-server": {
"url": "https://{your-domain}/mcp"
}
}
}