Atlassian · Capability

Atlassian The Jira Cloud platform REST API — Project Email

Atlassian The Jira Cloud platform REST API — Project Email. 2 operations. Lead operation: Atlassian Get Project S Sender Email. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianProject Email

What You Can Do

GET
Atlassiangetprojectemail — Atlassian Get Project S Sender Email
/v1/api/3/project/{projectid}/email
PUT
Atlassianupdateprojectemail — Atlassian Set Project S Sender Email
/v1/api/3/project/{projectid}/email

MCP Tools

atlassian-get-project-s-sender

Atlassian Get Project S Sender Email

read-only idempotent
atlassian-set-project-s-sender

Atlassian Set Project S Sender Email

idempotent

Capability Spec

jira-project-email.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian The Jira Cloud platform REST API — Project Email
  description: 'Atlassian The Jira Cloud platform REST API — Project Email. 2 operations. Lead operation: Atlassian Get Project
    S Sender Email. Self-contained Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Project Email
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ATLASSIAN_API_KEY: ATLASSIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: jira-project-email
    baseUri: https://your-domain.atlassian.net
    description: Atlassian The Jira Cloud platform REST API — Project Email business capability. Self-contained, no shared
      references.
    resources:
    - name: rest-api-3-project-projectId-email
      path: /rest/api/3/project/{projectId}/email
      operations:
      - name: atlassiangetprojectemail
        method: GET
        description: Atlassian Get Project S Sender Email
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectId
          in: path
          type: integer
          description: The project ID.
          required: true
      - name: atlassianupdateprojectemail
        method: PUT
        description: Atlassian Set Project S Sender Email
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectId
          in: path
          type: integer
          description: The project ID.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.ATLASSIAN_API_KEY}}'
  exposes:
  - type: rest
    namespace: jira-project-email-rest
    port: 8080
    description: REST adapter for Atlassian The Jira Cloud platform REST API — Project Email. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/3/project/{projectid}/email
      name: rest-api-3-project-projectid-email
      description: REST surface for rest-api-3-project-projectId-email.
      operations:
      - method: GET
        name: atlassiangetprojectemail
        description: Atlassian Get Project S Sender Email
        call: jira-project-email.atlassiangetprojectemail
        with:
          projectId: rest.projectId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: atlassianupdateprojectemail
        description: Atlassian Set Project S Sender Email
        call: jira-project-email.atlassianupdateprojectemail
        with:
          projectId: rest.projectId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: jira-project-email-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian The Jira Cloud platform REST API — Project Email. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: atlassian-get-project-s-sender
      description: Atlassian Get Project S Sender Email
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: jira-project-email.atlassiangetprojectemail
      with:
        projectId: tools.projectId
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-set-project-s-sender
      description: Atlassian Set Project S Sender Email
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: jira-project-email.atlassianupdateprojectemail
      with:
        projectId: tools.projectId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.