Amazon Pinpoint · Capability

Amazon Pinpoint API — Applications

Amazon Pinpoint API — Applications. 3 operations. Lead operation: Amazon Pinpoint Create an Application. Self-contained Naftiko capability covering one Amazon Pinpoint business surface.

Run with Naftiko Amazon PinpointApplications

What You Can Do

POST
Createapp — Amazon Pinpoint Create an Application
/v1/v1/apps
GET
Getapps — Amazon Pinpoint List Applications
/v1/v1/apps
GET
Getapp — Amazon Pinpoint Get Application Details
/v1/v1/apps/{application-id}

MCP Tools

amazon-pinpoint-create-application

Amazon Pinpoint Create an Application

amazon-pinpoint-list-applications

Amazon Pinpoint List Applications

read-only idempotent
amazon-pinpoint-get-application-details

Amazon Pinpoint Get Application Details

read-only idempotent

Capability Spec

amazon-pinpoint-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon Pinpoint API — Applications
  description: 'Amazon Pinpoint API — Applications. 3 operations. Lead operation: Amazon Pinpoint Create an Application. Self-contained
    Naftiko capability covering one Amazon Pinpoint business surface.'
  tags:
  - Amazon Pinpoint
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_PINPOINT_API_KEY: AMAZON_PINPOINT_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-pinpoint-applications
    baseUri: https://pinpoint.{region}.amazonaws.com
    description: Amazon Pinpoint API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: v1-apps
      path: /v1/apps
      operations:
      - name: createapp
        method: POST
        description: Amazon Pinpoint Create an Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: getapps
        method: GET
        description: Amazon Pinpoint List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-apps-application-id
      path: /v1/apps/{application-id}
      operations:
      - name: getapp
        method: GET
        description: Amazon Pinpoint Get Application Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: application-id
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_PINPOINT_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-pinpoint-applications-rest
    port: 8080
    description: REST adapter for Amazon Pinpoint API — Applications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/apps
      name: v1-apps
      description: REST surface for v1-apps.
      operations:
      - method: POST
        name: createapp
        description: Amazon Pinpoint Create an Application
        call: amazon-pinpoint-applications.createapp
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getapps
        description: Amazon Pinpoint List Applications
        call: amazon-pinpoint-applications.getapps
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/apps/{application-id}
      name: v1-apps-application-id
      description: REST surface for v1-apps-application-id.
      operations:
      - method: GET
        name: getapp
        description: Amazon Pinpoint Get Application Details
        call: amazon-pinpoint-applications.getapp
        with:
          application-id: rest.application-id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-pinpoint-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon Pinpoint API — Applications. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: amazon-pinpoint-create-application
      description: Amazon Pinpoint Create an Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-pinpoint-applications.createapp
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-pinpoint-list-applications
      description: Amazon Pinpoint List Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-pinpoint-applications.getapps
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-pinpoint-get-application-details
      description: Amazon Pinpoint Get Application Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-pinpoint-applications.getapp
      with:
        application-id: tools.application-id
      outputParameters:
      - type: object
        mapping: $.