fix standard auth

This commit is contained in:
Thilina Shashimal Senarath 2025-04-03 02:53:14 +05:30
parent 3d085008a8
commit 960261fc80
4 changed files with 137 additions and 53 deletions

View file

@ -1,7 +1,7 @@
# config.yaml
auth_server_base_url: ""
mcp_server_base_url: "http://localhost:8000"
mcp_server_base_url: ""
listen_address: ":8080"
jwks_url: ""
timeout_seconds: 10
@ -11,6 +11,21 @@ mcp_paths:
- /sse
path_mapping:
/token: /oauth/token
/.well-known/oauth-authorization-server: /.well-known/openid-configuration
cors:
allowed_origins:
- ""
allowed_methods:
- "GET"
- "POST"
- "PUT"
- "DELETE"
allowed_headers:
- "Authorization"
- "Content-Type"
allow_credentials: true
demo:
org_name: "openmcpauthdemo"