Amazon Monitron · Capability

Amazon Monitron — Projects

Amazon Monitron — Projects. 5 operations. Lead operation: Amazon Monitron List Projects. Self-contained Naftiko capability covering one Amazon Monitron business surface.

Run with Naftiko Amazon MonitronProjects

What You Can Do

GET
Listprojects — Amazon Monitron List Projects
/v1/projects
POST
Createproject — Amazon Monitron Create Project
/v1/projects
DELETE
Deleteproject — Amazon Monitron Delete Project
/v1/projects/{projectname}
GET
Getproject — Amazon Monitron Get Project
/v1/projects/{projectname}
PATCH
Updateproject — Amazon Monitron Update Project
/v1/projects/{projectname}

MCP Tools

amazon-monitron-list-projects

Amazon Monitron List Projects

read-only idempotent
amazon-monitron-create-project

Amazon Monitron Create Project

amazon-monitron-delete-project

Amazon Monitron Delete Project

idempotent
amazon-monitron-get-project

Amazon Monitron Get Project

read-only idempotent
amazon-monitron-update-project

Amazon Monitron Update Project

idempotent

Capability Spec

amazon-monitron-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon Monitron — Projects
  description: 'Amazon Monitron — Projects. 5 operations. Lead operation: Amazon Monitron List Projects. Self-contained Naftiko
    capability covering one Amazon Monitron business surface.'
  tags:
  - Amazon Monitron
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_MONITRON_API_KEY: AMAZON_MONITRON_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-monitron-projects
    baseUri: https://monitron.us-east-1.amazonaws.com
    description: Amazon Monitron — Projects business capability. Self-contained, no shared references.
    resources:
    - name: projects
      path: /projects
      operations:
      - name: listprojects
        method: GET
        description: Amazon Monitron List Projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: maxResults
          in: query
          type: integer
          description: The maximum number of results to return.
        - name: nextToken
          in: query
          type: string
          description: A pagination token.
      - name: createproject
        method: POST
        description: Amazon Monitron Create Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: projects-projectName
      path: /projects/{projectName}
      operations:
      - name: deleteproject
        method: DELETE
        description: Amazon Monitron Delete Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectName
          in: path
          type: string
          description: The name of the project.
          required: true
      - name: getproject
        method: GET
        description: Amazon Monitron Get Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectName
          in: path
          type: string
          description: The name of the project.
          required: true
      - name: updateproject
        method: PATCH
        description: Amazon Monitron Update Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectName
          in: path
          type: string
          description: The name of the project.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_MONITRON_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-monitron-projects-rest
    port: 8080
    description: REST adapter for Amazon Monitron — Projects. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/projects
      name: projects
      description: REST surface for projects.
      operations:
      - method: GET
        name: listprojects
        description: Amazon Monitron List Projects
        call: amazon-monitron-projects.listprojects
        with:
          maxResults: rest.maxResults
          nextToken: rest.nextToken
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Amazon Monitron Create Project
        call: amazon-monitron-projects.createproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{projectname}
      name: projects-projectname
      description: REST surface for projects-projectName.
      operations:
      - method: DELETE
        name: deleteproject
        description: Amazon Monitron Delete Project
        call: amazon-monitron-projects.deleteproject
        with:
          projectName: rest.projectName
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getproject
        description: Amazon Monitron Get Project
        call: amazon-monitron-projects.getproject
        with:
          projectName: rest.projectName
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateproject
        description: Amazon Monitron Update Project
        call: amazon-monitron-projects.updateproject
        with:
          projectName: rest.projectName
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-monitron-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon Monitron — Projects. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: amazon-monitron-list-projects
      description: Amazon Monitron List Projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-monitron-projects.listprojects
      with:
        maxResults: tools.maxResults
        nextToken: tools.nextToken
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-monitron-create-project
      description: Amazon Monitron Create Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-monitron-projects.createproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-monitron-delete-project
      description: Amazon Monitron Delete Project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amazon-monitron-projects.deleteproject
      with:
        projectName: tools.projectName
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-monitron-get-project
      description: Amazon Monitron Get Project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-monitron-projects.getproject
      with:
        projectName: tools.projectName
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-monitron-update-project
      description: Amazon Monitron Update Project
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: amazon-monitron-projects.updateproject
      with:
        projectName: tools.projectName
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.