Qovery · Capability

Qovery API — User Sign Up

Qovery API — User Sign Up. 2 operations. Lead operation: Get Sign up information. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryUser Sign Up

What You Can Do

GET
Getusersignup — Get Sign up information
/v1/admin/usersignup
POST
Createusersignup — Send Sign Up request
/v1/admin/usersignup

MCP Tools

get-sign-up-information

Get Sign up information

read-only idempotent
send-sign-up-request

Send Sign Up request

Capability Spec

qovery-user-sign-up.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — User Sign Up
  description: 'Qovery API — User Sign Up. 2 operations. Lead operation: Get Sign up information. Self-contained Naftiko capability
    covering one Qovery business surface.'
  tags:
  - Qovery
  - User Sign Up
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QOVERY_API_KEY: QOVERY_API_KEY
capability:
  consumes:
  - type: http
    namespace: qovery-user-sign-up
    baseUri: https://api.qovery.com
    description: Qovery API — User Sign Up business capability. Self-contained, no shared references.
    resources:
    - name: admin-userSignUp
      path: /admin/userSignUp
      operations:
      - name: getusersignup
        method: GET
        description: Get Sign up information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createusersignup
        method: POST
        description: Send Sign Up request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-user-sign-up-rest
    port: 8080
    description: REST adapter for Qovery API — User Sign Up. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/admin/usersignup
      name: admin-usersignup
      description: REST surface for admin-userSignUp.
      operations:
      - method: GET
        name: getusersignup
        description: Get Sign up information
        call: qovery-user-sign-up.getusersignup
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createusersignup
        description: Send Sign Up request
        call: qovery-user-sign-up.createusersignup
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-user-sign-up-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — User Sign Up. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-sign-up-information
      description: Get Sign up information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-user-sign-up.getusersignup
      outputParameters:
      - type: object
        mapping: $.
    - name: send-sign-up-request
      description: Send Sign Up request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-user-sign-up.createusersignup
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.