Auth0 · Capability

Auth0 API — Deprecated > Authenticate

Auth0 API — Deprecated > Authenticate. 2 operations. Lead operation: Auth0 Login using a social provider's access token. Self-contained Naftiko capability covering one Auth0 business surface.

Run with Naftiko Auth0Deprecated > Authenticate

What You Can Do

POST
Oauthaccesstoken — Auth0 Login using a social provider's access token
/v1/oauth/access-token
POST
Tokeninfo — Auth0 [Deprecated] Return a user profile based on the user's JWT
/v1/tokeninfo

MCP Tools

auth0-login-using-social-provider-s

Auth0 Login using a social provider's access token

auth0-deprecated-return-user-profile

Auth0 [Deprecated] Return a user profile based on the user's JWT

Capability Spec

auth0-deprecated-authenticate.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Auth0 API — Deprecated > Authenticate
  description: 'Auth0 API — Deprecated > Authenticate. 2 operations. Lead operation: Auth0 Login using a social provider''s
    access token. Self-contained Naftiko capability covering one Auth0 business surface.'
  tags:
  - Auth0
  - Deprecated > Authenticate
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AUTH0_API_KEY: AUTH0_API_KEY
capability:
  consumes:
  - type: http
    namespace: auth0-deprecated-authenticate
    baseUri: ''
    description: Auth0 API — Deprecated > Authenticate business capability. Self-contained, no shared references.
    resources:
    - name: oauth-access_token
      path: /oauth/access_token
      operations:
      - name: oauthaccesstoken
        method: POST
        description: Auth0 Login using a social provider's access token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: tokeninfo
      path: /tokeninfo
      operations:
      - name: tokeninfo
        method: POST
        description: Auth0 [Deprecated] Return a user profile based on the user's JWT
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
  exposes:
  - type: rest
    namespace: auth0-deprecated-authenticate-rest
    port: 8080
    description: REST adapter for Auth0 API — Deprecated > Authenticate. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/oauth/access-token
      name: oauth-access-token
      description: REST surface for oauth-access_token.
      operations:
      - method: POST
        name: oauthaccesstoken
        description: Auth0 Login using a social provider's access token
        call: auth0-deprecated-authenticate.oauthaccesstoken
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/tokeninfo
      name: tokeninfo
      description: REST surface for tokeninfo.
      operations:
      - method: POST
        name: tokeninfo
        description: Auth0 [Deprecated] Return a user profile based on the user's JWT
        call: auth0-deprecated-authenticate.tokeninfo
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: auth0-deprecated-authenticate-mcp
    port: 9090
    transport: http
    description: MCP adapter for Auth0 API — Deprecated > Authenticate. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: auth0-login-using-social-provider-s
      description: Auth0 Login using a social provider's access token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: auth0-deprecated-authenticate.oauthaccesstoken
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: auth0-deprecated-return-user-profile
      description: Auth0 [Deprecated] Return a user profile based on the user's JWT
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: auth0-deprecated-authenticate.tokeninfo
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.