PropelAuth Dynamic Client Registration API

RFC 7591 dynamic client registration

Operations 1

POST /oauth/2.1/register Dynamic Client Registration #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/propelauth-dynamic-client-registration-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

propelauth-dynamic-client-registration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PropelAuth End-User API Keys Access Tokens Dynamic Client Registration API
  description: 'Backend REST API for validating, issuing, listing, and revoking API keys that PropelAuth

    manages on behalf of your end users and tenant organizations. API keys can be scoped to a

    personal user, an organization, or imported from a legacy auth system. All endpoints

    require a PropelAuth Backend Integration API key.

    '
  version: 1.0.0
  contact:
    name: PropelAuth Support
    url: https://www.propelauth.com
    email: support@propelauth.com
  license:
    name: PropelAuth Terms
    url: https://www.propelauth.com/legal/terms-of-service
servers:
- url: https://{authId}.propelauthtest.com
  description: Test environment
  variables:
    authId:
      default: '0000000000'
- url: https://auth.example.com
  description: Production / Staging custom domain
security:
- BackendApiKey: []
tags:
- name: Dynamic Client Registration
  description: RFC 7591 dynamic client registration
paths:
  /oauth/2.1/register:
    post:
      summary: Dynamic Client Registration
      description: 'Register a new MCP client dynamically. Requires that dynamic client registration is

        enabled for your PropelAuth instance.

        '
      operationId: mcpRegister
      tags:
      - Dynamic Client Registration
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - redirect_uris
              properties:
                redirect_uris:
                  type: array
                  items:
                    type: string
                    format: uri
                client_name:
                  type: string
                client_uri:
                  type: string
                  format: uri
                token_endpoint_auth_method:
                  type: string
                  enum:
                  - none
                  - client_secret_basic
                  - client_secret_post
                grant_types:
                  type: array
                  items:
                    type: string
                    enum:
                    - authorization_code
                    - refresh_token
                response_types:
                  type: array
                  items:
                    type: string
                    enum:
                    - code
                scope:
                  type: string
      responses:
        '201':
          description: Client registered
          content:
            application/json:
              schema:
                type: object
                properties:
                  client_id:
                    type: string
                  client_secret:
                    type: string
                  client_id_issued_at:
                    type: integer
                  client_secret_expires_at:
                    type: integer
                  redirect_uris:
                    type: array
                    items:
                      type: string
components:
  securitySchemes:
    BackendApiKey:
      type: http
      scheme: bearer