Google · Capability

Google Gmail API — Auto

Google Gmail API — Auto. 2 operations. Lead operation: Google Get Auto Forwarding Settings. Self-contained Naftiko capability covering one Google business surface.

Run with Naftiko GoogleAuto

What You Can Do

GET
Get — Google Get Auto Forwarding Settings
/v1/gmail/v1/users/{userid}/settings/autoforwarding
PUT
Put — Google Update Auto Forwarding
/v1/gmail/v1/users/{userid}/settings/autoforwarding

MCP Tools

google-get-auto-forwarding-settings

Google Get Auto Forwarding Settings

read-only idempotent
google-update-auto-forwarding

Google Update Auto Forwarding

idempotent

Capability Spec

gmail-auto.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Google Gmail API — Auto
  description: 'Google Gmail API — Auto. 2 operations. Lead operation: Google Get Auto Forwarding Settings. Self-contained
    Naftiko capability covering one Google business surface.'
  tags:
  - Google
  - Auto
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GOOGLE_API_KEY: GOOGLE_API_KEY
capability:
  consumes:
  - type: http
    namespace: gmail-auto
    baseUri: https://gmail.googleapis.com
    description: Google Gmail API — Auto business capability. Self-contained, no shared references.
    resources:
    - name: gmail-v1-users-userId-settings-autoForwarding
      path: /gmail/v1/users/{userId}/settings/autoForwarding
      operations:
      - name: get
        method: GET
        description: Google Get Auto Forwarding Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Accept
          in: header
          type: string
        - name: userId
          in: path
          type: string
          description: (Required)
          required: true
      - name: put
        method: PUT
        description: Google Update Auto Forwarding
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Content-Type
          in: header
          type: string
        - name: Accept
          in: header
          type: string
        - name: userId
          in: path
          type: string
          description: (Required)
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
  exposes:
  - type: rest
    namespace: gmail-auto-rest
    port: 8080
    description: REST adapter for Google Gmail API — Auto. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/gmail/v1/users/{userid}/settings/autoforwarding
      name: gmail-v1-users-userid-settings-autoforwarding
      description: REST surface for gmail-v1-users-userId-settings-autoForwarding.
      operations:
      - method: GET
        name: get
        description: Google Get Auto Forwarding Settings
        call: gmail-auto.get
        with:
          Accept: rest.Accept
          userId: rest.userId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: put
        description: Google Update Auto Forwarding
        call: gmail-auto.put
        with:
          Content-Type: rest.Content-Type
          Accept: rest.Accept
          userId: rest.userId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gmail-auto-mcp
    port: 9090
    transport: http
    description: MCP adapter for Google Gmail API — Auto. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: google-get-auto-forwarding-settings
      description: Google Get Auto Forwarding Settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gmail-auto.get
      with:
        Accept: tools.Accept
        userId: tools.userId
      outputParameters:
      - type: object
        mapping: $.
    - name: google-update-auto-forwarding
      description: Google Update Auto Forwarding
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: gmail-auto.put
      with:
        Content-Type: tools.Content-Type
        Accept: tools.Accept
        userId: tools.userId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.