MCP Remote Proxy (OAuth 2.1 PKCE)
View on GitHubLocal OAuth proxy for connecting to remote MCP servers that require full OAuth 2.1 with PKCE. The mcp-remote process handles the authorization code flow and token refresh, then proxies tool calls to the remote server.
name: "MCP Remote Proxy (OAuth 2.1 PKCE)"
description: "Local OAuth proxy for connecting to remote MCP servers that require full OAuth 2.1 with PKCE. The mcp-remote process handles the authorization code flow and token refresh, then proxies tool calls to the remote server."
mcp-remote:
type: stdio
command: npx
args:
- "-y"
- "mcp-remote@latest"
- "${REMOTE_MCP_URL}"
Smithery Connect (Bearer token auth)
View on GitHubConnect to any Smithery-hosted MCP server using a Smithery API key. Demonstrates the Bearer token authentication pattern for remote MCP endpoints.
name: "Smithery Connect (Bearer token auth)"
description: "Connect to any Smithery-hosted MCP server using a Smithery API key. Demonstrates the Bearer token authentication pattern for remote MCP endpoints."
smithery-connect:
type: streamable-http
url: "${SMITHERY_SERVER_URL}"
headers:
Authorization: "Bearer ${SMITHERY_API_KEY}"
Want to add a configuration? See the contributing guide.