Signal · Capability

Signal Server API — Registration

Signal Server API — Registration. 1 operations. Lead operation: Register a new account. Self-contained Naftiko capability covering one Signal business surface.

Run with Naftiko SignalRegistration

What You Can Do

POST
Registeraccount — Register a new account
/v1/v1/registration

MCP Tools

register-new-account

Register a new account

Capability Spec

server-registration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Signal Server API — Registration
  description: 'Signal Server API — Registration. 1 operations. Lead operation: Register a new account. Self-contained Naftiko
    capability covering one Signal business surface.'
  tags:
  - Signal
  - Registration
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SIGNAL_API_KEY: SIGNAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: server-registration
    baseUri: https://chat.signal.org
    description: Signal Server API — Registration business capability. Self-contained, no shared references.
    resources:
    - name: v1-registration
      path: /v1/registration
      operations:
      - name: registeraccount
        method: POST
        description: Register a new account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.SIGNAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: server-registration-rest
    port: 8080
    description: REST adapter for Signal Server API — Registration. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/registration
      name: v1-registration
      description: REST surface for v1-registration.
      operations:
      - method: POST
        name: registeraccount
        description: Register a new account
        call: server-registration.registeraccount
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: server-registration-mcp
    port: 9090
    transport: http
    description: MCP adapter for Signal Server API — Registration. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: register-new-account
      description: Register a new account
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: server-registration.registeraccount
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.