Skip to content
Merged
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
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module github.com/modelcontextprotocol/go-sdk
go 1.23.0

require (
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/google/go-cmp v0.7.0
github.com/google/jsonschema-go v0.2.1-0.20250825175020-748c325cec76
github.com/yosida95/uritemplate/v3 v3.0.2
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
github.com/golang-jwt/jwt/v5 v5.2.1 h1:OuVbFODueb089Lh128TAcimifWaLhJwVflnrgM17wHk=
github.com/golang-jwt/jwt/v5 v5.2.1/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk=
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/google/jsonschema-go v0.2.0 h1:Uh19091iHC56//WOsAd1oRg6yy1P9BpSvpjOL6RcjLQ=
Expand Down
151 changes: 151 additions & 0 deletions internal/testing/fake_auth_server.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
package testing

import (
"crypto/sha256"
"encoding/base64"
"encoding/json"
"fmt"
"net/http"
"time"

"github.com/golang-jwt/jwt/v5"
)

const (
authServerPort = ":8080"
issuer = "http://localhost" + authServerPort
tokenExpiry = time.Hour
)

var jwtSigningKey = []byte("fake-secret-key")

type authCodeInfo struct {
codeChallenge string
redirectURI string
}

// // FakeAuthServer is a fake OAuth2 authorization server.
// type FakeAuthServer struct {
// server *http.Server
// authCodes map[string]authCodeInfo
// }
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Leftover commented-out code?


type state struct {
authCodes map[string]authCodeInfo
}

// NewFakeAuthMux constructs a ServeMux that implements an OAuth 2.1 authentication
// server. It should be used with [httptest.NewTLSServer].
func NewFakeAuthMux() *http.ServeMux {
s := &state{authCodes: make(map[string]authCodeInfo)}
mux := http.NewServeMux()
mux.HandleFunc("/.well-known/oauth-authorization-server", s.handleMetadata)
mux.HandleFunc("/authorize", s.handleAuthorize)
mux.HandleFunc("/token", s.handleToken)
return mux
}

func (s *state) handleMetadata(w http.ResponseWriter, r *http.Request) {
issuer := "https://localhost:" + r.URL.Port()
metadata := map[string]any{
"issuer": issuer,
Comment thread
jba marked this conversation as resolved.
Comment thread
jba marked this conversation as resolved.
"authorization_endpoint": issuer + "/authorize",
"token_endpoint": issuer + "/token",
"jwks_uri": issuer + "/.well-known/jwks.json",
"scopes_supported": []string{"openid", "profile", "email"},
"response_types_supported": []string{"code"},
"grant_types_supported": []string{"authorization_code"},
"token_endpoint_auth_methods_supported": []string{"none"},
"code_challenge_methods_supported": []string{"S256"},
}
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(metadata)
}

func (s *state) handleAuthorize(w http.ResponseWriter, r *http.Request) {
query := r.URL.Query()
responseType := query.Get("response_type")
redirectURI := query.Get("redirect_uri")
codeChallenge := query.Get("code_challenge")
codeChallengeMethod := query.Get("code_challenge_method")

if responseType != "code" {
http.Error(w, "unsupported_response_type", http.StatusBadRequest)
return
}
if redirectURI == "" {
http.Error(w, "invalid_request (no redirect_uri)", http.StatusBadRequest)
return
}
Comment thread
jba marked this conversation as resolved.
if codeChallenge == "" || codeChallengeMethod != "S256" {
http.Error(w, "invalid_request (code challenge is not S256)", http.StatusBadRequest)
return
}
if query.Get("client_id") == "" {
http.Error(w, "invalid_request (missing client_id)", http.StatusBadRequest)
return
}
Comment thread
jba marked this conversation as resolved.

authCode := "fake-auth-code-" + fmt.Sprintf("%d", time.Now().UnixNano())
Comment thread
jba marked this conversation as resolved.
s.authCodes[authCode] = authCodeInfo{
codeChallenge: codeChallenge,
redirectURI: redirectURI,
}

redirectURL := fmt.Sprintf("%s?code=%s&state=%s", redirectURI, authCode, query.Get("state"))
http.Redirect(w, r, redirectURL, http.StatusFound)
}

func (s *state) handleToken(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
grantType := r.Form.Get("grant_type")
code := r.Form.Get("code")
codeVerifier := r.Form.Get("code_verifier")
// Ignore redirect_uri; it is not required in 2.1.
// https://www.ietf.org/archive/id/draft-ietf-oauth-v2-1-13.html#redirect-uri-in-token-request

if grantType != "authorization_code" {
http.Error(w, "unsupported_grant_type", http.StatusBadRequest)
return
}

authCodeInfo, ok := s.authCodes[code]
if !ok {
http.Error(w, "invalid_grant", http.StatusBadRequest)
return
}
delete(s.authCodes, code)

// PKCE verification
hasher := sha256.New()
hasher.Write([]byte(codeVerifier))
calculatedChallenge := base64.RawURLEncoding.EncodeToString(hasher.Sum(nil))
if calculatedChallenge != authCodeInfo.codeChallenge {
http.Error(w, "invalid_grant", http.StatusBadRequest)
return
}

// Issue JWT
now := time.Now()
claims := jwt.MapClaims{
"iss": issuer,
"sub": "fake-user-id",
"aud": "fake-client-id",
"exp": now.Add(tokenExpiry).Unix(),
"iat": now.Unix(),
}
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
accessToken, err := token.SignedString(jwtSigningKey)
if err != nil {
http.Error(w, "server_error", http.StatusInternalServerError)
return
}

tokenResponse := map[string]any{
"access_token": accessToken,
"token_type": "Bearer",
"expires_in": int(tokenExpiry.Seconds()),
}
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(tokenResponse)
}