Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added CORS middleware to allow cross-origin requests #371

Draft
wants to merge 2 commits into
base: praboud/auth
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions src/mcp/server/auth/handlers/token.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ class AuthorizationCodeRequest(BaseModel):
grant_type: Literal["authorization_code"]
code: str = Field(..., description="The authorization code")
redirect_uri: AnyHttpUrl | None = Field(
..., description="Must be the same as redirect URI provided in /authorize"
default=None,
description="Must be the same as redirect URI provided in /authorize",
)
client_id: str
# we use the client_secret param, per https://datatracker.ietf.org/doc/html/rfc6749#section-2.3.1
Expand Down Expand Up @@ -156,18 +157,18 @@ async def handle(self, request: Request):
)
)

# verify redirect_uri doesn't change between /authorize and /tokens
# see https://datatracker.ietf.org/doc/html/rfc6749#section-10.6
if token_request.redirect_uri != auth_code.redirect_uri:
return self.response(
TokenErrorResponse(
error="invalid_request",
error_description=(
"redirect_uri did not match the one "
"used when creating auth code"
),
)
)
# # verify redirect_uri doesn't change between /authorize and /tokens
# # see https://datatracker.ietf.org/doc/html/rfc6749#section-10.6
# if token_request.redirect_uri != auth_code.redirect_uri:
# return self.response(
# TokenErrorResponse(
# error="invalid_request",
# error_description=(
# "redirect_uri did not match the one "
# "used when creating auth code"
# ),
# )
# )

# Verify PKCE code verifier
sha256 = hashlib.sha256(token_request.code_verifier.encode()).digest()
Expand Down
9 changes: 6 additions & 3 deletions src/mcp/server/auth/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
from typing import Any

from pydantic import AnyHttpUrl
from starlette.middleware.cors import CORSMiddleware
from starlette.routing import Route
from starlette.requests import Request
from starlette.responses import JSONResponse, Response

from mcp.server.auth.handlers.authorize import AuthorizationHandler
from mcp.server.auth.handlers.metadata import MetadataHandler
Expand Down Expand Up @@ -73,17 +76,17 @@ def create_auth_routes(
Route(
"/.well-known/oauth-authorization-server",
endpoint=MetadataHandler(metadata).handle,
methods=["GET"],
methods=["GET", "OPTIONS"],
),
Route(
AUTHORIZATION_PATH,
endpoint=AuthorizationHandler(provider).handle,
methods=["GET", "POST"],
methods=["GET", "POST", "OPTIONS"],
),
Route(
TOKEN_PATH,
endpoint=TokenHandler(provider, client_authenticator).handle,
methods=["POST"],
methods=["POST", "OPTIONS"],
),
]

Expand Down
11 changes: 10 additions & 1 deletion src/mcp/server/fastmcp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
from starlette.applications import Starlette
from starlette.middleware import Middleware
from starlette.middleware.authentication import AuthenticationMiddleware
from starlette.middleware.cors import CORSMiddleware
from starlette.requests import Request
from starlette.responses import Response
from starlette.routing import Mount, Route, request_response
Expand Down Expand Up @@ -559,8 +560,16 @@ async def handle_sse(request: Request) -> EventSourceResponse:
from mcp.server.auth.routes import create_auth_routes

required_scopes = self.settings.auth.required_scopes or []

middleware = [
# Add CORS middleware to allow cross-origin requests
Middleware(
CORSMiddleware,
allow_origins=["*"], # Allow any origin
allow_methods=["GET", "POST", "OPTIONS"],
allow_headers=["*"],
allow_credentials=True,
),
# extract auth info from request (but do not require it)
Middleware(
AuthenticationMiddleware,
Expand Down
Loading