From e5c2fa657dfb684aafffd8ac79d149b94f9c499f Mon Sep 17 00:00:00 2001 From: bolbol Date: Tue, 28 Jul 2026 12:25:50 +0000 Subject: [PATCH] add common/baserow-oauth-stub/oauth-authorization-server.json (fix connecteur Claude.ai Baserow MCP) --- .../baserow-oauth-stub/oauth-authorization-server.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 common/baserow-oauth-stub/oauth-authorization-server.json diff --git a/common/baserow-oauth-stub/oauth-authorization-server.json b/common/baserow-oauth-stub/oauth-authorization-server.json new file mode 100644 index 0000000..7f162f5 --- /dev/null +++ b/common/baserow-oauth-stub/oauth-authorization-server.json @@ -0,0 +1,10 @@ +{ + "issuer": "https://baserow.bolbol.tn", + "authorization_endpoint": "https://baserow.bolbol.tn/authorize", + "token_endpoint": "https://baserow.bolbol.tn/token", + "registration_endpoint": "https://baserow.bolbol.tn/register", + "response_types_supported": ["code"], + "grant_types_supported": ["authorization_code", "refresh_token"], + "code_challenge_methods_supported": ["S256", "plain"], + "token_endpoint_auth_methods_supported": ["none"] +}