Frostbyte · Capability

Clawdia Agent Gateway API — Communication

Clawdia Agent Gateway API — Communication. 6 operations. Lead operation: Agent Email Sender — /api/logs. Self-contained Naftiko capability covering one Frostbyte business surface.

Run with Naftiko FrostbyteCommunication

What You Can Do

GET
Agentemailgetapilogs — Agent Email Sender — /api/logs
/v1/v1/agent-email/api/logs
POST
Agentemailpostapisend — Agent Email Sender — /api/send
/v1/v1/agent-email/api/send
POST
Agentemailpostapisendtemplate — Agent Email Sender — /api/send/template
/v1/v1/agent-email/api/send/template
POST
Agentemailpostapismtpconfigure — Agent Email Sender — /api/smtp/configure
/v1/v1/agent-email/api/smtp/configure
POST
Agentemailpostapismtpverify — Agent Email Sender — /api/smtp/verify
/v1/v1/agent-email/api/smtp/verify
GET
Agentemailgetapitemplates — Agent Email Sender — /api/templates
/v1/v1/agent-email/api/templates

MCP Tools

agent-email-sender-api-logs

Agent Email Sender — /api/logs

read-only idempotent
agent-email-sender-api-send

Agent Email Sender — /api/send

agent-email-sender-api-send-2

Agent Email Sender — /api/send/template

agent-email-sender-api-smtp

Agent Email Sender — /api/smtp/configure

agent-email-sender-api-smtp-2

Agent Email Sender — /api/smtp/verify

agent-email-sender-api-templates

Agent Email Sender — /api/templates

read-only idempotent

Capability Spec

agent-gateway-communication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Clawdia Agent Gateway API — Communication
  description: 'Clawdia Agent Gateway API — Communication. 6 operations. Lead operation: Agent Email Sender — /api/logs. Self-contained
    Naftiko capability covering one Frostbyte business surface.'
  tags:
  - Frostbyte
  - Communication
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FROSTBYTE_API_KEY: FROSTBYTE_API_KEY
capability:
  consumes:
  - type: http
    namespace: agent-gateway-communication
    baseUri: https://agent-gateway-kappa.vercel.app
    description: Clawdia Agent Gateway API — Communication business capability. Self-contained, no shared references.
    resources:
    - name: v1-agent-email-api-logs
      path: /v1/agent-email/api/logs
      operations:
      - name: agentemailgetapilogs
        method: GET
        description: Agent Email Sender — /api/logs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-agent-email-api-send
      path: /v1/agent-email/api/send
      operations:
      - name: agentemailpostapisend
        method: POST
        description: Agent Email Sender — /api/send
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-agent-email-api-send-template
      path: /v1/agent-email/api/send/template
      operations:
      - name: agentemailpostapisendtemplate
        method: POST
        description: Agent Email Sender — /api/send/template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-agent-email-api-smtp-configure
      path: /v1/agent-email/api/smtp/configure
      operations:
      - name: agentemailpostapismtpconfigure
        method: POST
        description: Agent Email Sender — /api/smtp/configure
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-agent-email-api-smtp-verify
      path: /v1/agent-email/api/smtp/verify
      operations:
      - name: agentemailpostapismtpverify
        method: POST
        description: Agent Email Sender — /api/smtp/verify
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-agent-email-api-templates
      path: /v1/agent-email/api/templates
      operations:
      - name: agentemailgetapitemplates
        method: GET
        description: Agent Email Sender — /api/templates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.FROSTBYTE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: agent-gateway-communication-rest
    port: 8080
    description: REST adapter for Clawdia Agent Gateway API — Communication. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v1/agent-email/api/logs
      name: v1-agent-email-api-logs
      description: REST surface for v1-agent-email-api-logs.
      operations:
      - method: GET
        name: agentemailgetapilogs
        description: Agent Email Sender — /api/logs
        call: agent-gateway-communication.agentemailgetapilogs
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/agent-email/api/send
      name: v1-agent-email-api-send
      description: REST surface for v1-agent-email-api-send.
      operations:
      - method: POST
        name: agentemailpostapisend
        description: Agent Email Sender — /api/send
        call: agent-gateway-communication.agentemailpostapisend
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/agent-email/api/send/template
      name: v1-agent-email-api-send-template
      description: REST surface for v1-agent-email-api-send-template.
      operations:
      - method: POST
        name: agentemailpostapisendtemplate
        description: Agent Email Sender — /api/send/template
        call: agent-gateway-communication.agentemailpostapisendtemplate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/agent-email/api/smtp/configure
      name: v1-agent-email-api-smtp-configure
      description: REST surface for v1-agent-email-api-smtp-configure.
      operations:
      - method: POST
        name: agentemailpostapismtpconfigure
        description: Agent Email Sender — /api/smtp/configure
        call: agent-gateway-communication.agentemailpostapismtpconfigure
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/agent-email/api/smtp/verify
      name: v1-agent-email-api-smtp-verify
      description: REST surface for v1-agent-email-api-smtp-verify.
      operations:
      - method: POST
        name: agentemailpostapismtpverify
        description: Agent Email Sender — /api/smtp/verify
        call: agent-gateway-communication.agentemailpostapismtpverify
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/agent-email/api/templates
      name: v1-agent-email-api-templates
      description: REST surface for v1-agent-email-api-templates.
      operations:
      - method: GET
        name: agentemailgetapitemplates
        description: Agent Email Sender — /api/templates
        call: agent-gateway-communication.agentemailgetapitemplates
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: agent-gateway-communication-mcp
    port: 9090
    transport: http
    description: MCP adapter for Clawdia Agent Gateway API — Communication. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: agent-email-sender-api-logs
      description: Agent Email Sender — /api/logs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-gateway-communication.agentemailgetapilogs
      outputParameters:
      - type: object
        mapping: $.
    - name: agent-email-sender-api-send
      description: Agent Email Sender — /api/send
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agent-gateway-communication.agentemailpostapisend
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: agent-email-sender-api-send-2
      description: Agent Email Sender — /api/send/template
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agent-gateway-communication.agentemailpostapisendtemplate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: agent-email-sender-api-smtp
      description: Agent Email Sender — /api/smtp/configure
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agent-gateway-communication.agentemailpostapismtpconfigure
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: agent-email-sender-api-smtp-2
      description: Agent Email Sender — /api/smtp/verify
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agent-gateway-communication.agentemailpostapismtpverify
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: agent-email-sender-api-templates
      description: Agent Email Sender — /api/templates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-gateway-communication.agentemailgetapitemplates
      outputParameters:
      - type: object
        mapping: $.