Spring Security · Capability

Spring Authorization Server API — Authorization

Spring Authorization Server API — Authorization. 1 operations. Lead operation: OAuth2 Authorization Request. Self-contained Naftiko capability covering one Spring Security business surface.

Run with Naftiko Spring SecurityAuthorization

What You Can Do

GET
Authorizationrequest — OAuth2 Authorization Request
/v1/oauth2/authorize

MCP Tools

oauth2-authorization-request

OAuth2 Authorization Request

read-only idempotent

Capability Spec

spring-authorization-server-authorization.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Spring Authorization Server API — Authorization
  description: 'Spring Authorization Server API — Authorization. 1 operations. Lead operation: OAuth2 Authorization Request.
    Self-contained Naftiko capability covering one Spring Security business surface.'
  tags:
  - Spring Security
  - Authorization
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SPRING_SECURITY_API_KEY: SPRING_SECURITY_API_KEY
capability:
  consumes:
  - type: http
    namespace: spring-authorization-server-authorization
    baseUri: http://localhost:9000
    description: Spring Authorization Server API — Authorization business capability. Self-contained, no shared references.
    resources:
    - name: oauth2-authorize
      path: /oauth2/authorize
      operations:
      - name: authorizationrequest
        method: GET
        description: OAuth2 Authorization Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: response_type
          in: query
          type: string
          required: true
        - name: client_id
          in: query
          type: string
          required: true
        - name: redirect_uri
          in: query
          type: string
        - name: scope
          in: query
          type: string
        - name: state
          in: query
          type: string
        - name: code_challenge
          in: query
          type: string
        - name: code_challenge_method
          in: query
          type: string
    authentication:
      type: bearer
      token: '{{env.SPRING_SECURITY_API_KEY}}'
  exposes:
  - type: rest
    namespace: spring-authorization-server-authorization-rest
    port: 8080
    description: REST adapter for Spring Authorization Server API — Authorization. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/oauth2/authorize
      name: oauth2-authorize
      description: REST surface for oauth2-authorize.
      operations:
      - method: GET
        name: authorizationrequest
        description: OAuth2 Authorization Request
        call: spring-authorization-server-authorization.authorizationrequest
        with:
          response_type: rest.response_type
          client_id: rest.client_id
          redirect_uri: rest.redirect_uri
          scope: rest.scope
          state: rest.state
          code_challenge: rest.code_challenge
          code_challenge_method: rest.code_challenge_method
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: spring-authorization-server-authorization-mcp
    port: 9090
    transport: http
    description: MCP adapter for Spring Authorization Server API — Authorization. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: oauth2-authorization-request
      description: OAuth2 Authorization Request
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: spring-authorization-server-authorization.authorizationrequest
      with:
        response_type: tools.response_type
        client_id: tools.client_id
        redirect_uri: tools.redirect_uri
        scope: tools.scope
        state: tools.state
        code_challenge: tools.code_challenge
        code_challenge_method: tools.code_challenge_method
      outputParameters:
      - type: object
        mapping: $.