Requirements
Your users need to be on a Mobbin Pro Plan, Team Plan, or Enterprise Plan. There is no separate fee for integrators.Setup
Mobbin uses Dynamic Client Registration (RFC 7591), so noclient_id provisioning or redirect URI whitelisting is needed on Mobbin’s side. Follow the
steps below to connect your app:
-
Fetch the protected resource metadata to discover the authorization server:
-
Fetch the authorization server’s
.well-known/oauth-authorization-serverto get the full set of OAuth endpoints (authorization, token, registration, JWKS, etc.). -
Register your app via the DCR endpoint to obtain a
client_id. -
Redirect the user to the authorization endpoint with PKCE (
S256) and theopenidscope. - Exchange the authorization code for an access token and refresh token.
-
Call the MCP server at
https://api.mobbin.com/mcpwith aBearertoken. - Use the refresh token to obtain new access tokens as needed.