brevo · Capability

Brevo Transactional Email API — Senders

Brevo Transactional Email API — Senders. 2 operations. Lead operation: Get email senders. Self-contained Naftiko capability covering one Brevo business surface.

Run with Naftiko BrevoSenders

What You Can Do

GET
Getsenders — Get email senders
/v1/senders
POST
Createsender — Create a new sender
/v1/senders

MCP Tools

get-email-senders

Get email senders

read-only idempotent
create-new-sender

Create a new sender

Capability Spec

transactional-email-senders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Brevo Transactional Email API — Senders
  description: 'Brevo Transactional Email API — Senders. 2 operations. Lead operation: Get email senders. Self-contained Naftiko
    capability covering one Brevo business surface.'
  tags:
  - Brevo
  - Senders
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BREVO_API_KEY: BREVO_API_KEY
capability:
  consumes:
  - type: http
    namespace: transactional-email-senders
    baseUri: https://api.brevo.com/v3
    description: Brevo Transactional Email API — Senders business capability. Self-contained, no shared references.
    resources:
    - name: senders
      path: /senders
      operations:
      - name: getsenders
        method: GET
        description: Get email senders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: ip
          in: query
          type: string
          description: Filter senders by dedicated IP address.
        - name: domain
          in: query
          type: string
          description: Filter senders by domain name.
      - name: createsender
        method: POST
        description: Create a new sender
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: api-key
      value: '{{env.BREVO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: transactional-email-senders-rest
    port: 8080
    description: REST adapter for Brevo Transactional Email API — Senders. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/senders
      name: senders
      description: REST surface for senders.
      operations:
      - method: GET
        name: getsenders
        description: Get email senders
        call: transactional-email-senders.getsenders
        with:
          ip: rest.ip
          domain: rest.domain
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsender
        description: Create a new sender
        call: transactional-email-senders.createsender
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: transactional-email-senders-mcp
    port: 9090
    transport: http
    description: MCP adapter for Brevo Transactional Email API — Senders. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-email-senders
      description: Get email senders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: transactional-email-senders.getsenders
      with:
        ip: tools.ip
        domain: tools.domain
      outputParameters:
      - type: object
        mapping: $.
    - name: create-new-sender
      description: Create a new sender
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: transactional-email-senders.createsender
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.