ServiceNow · Capability

ServiceNow Change Management API — Standard Changes

ServiceNow Change Management API — Standard Changes. 2 operations. Lead operation: Servicenow List Standard Change Requests. Self-contained Naftiko capability covering one Servicenow business surface.

Run with Naftiko ServicenowStandard Changes

What You Can Do

GET
Liststandardchanges — Servicenow List Standard Change Requests
/v1/change/standard
POST
Createstandardchange — Servicenow Create a Standard Change From a Template
/v1/change/standard/{standard-change-template-id}

MCP Tools

servicenow-list-standard-change-requests

Servicenow List Standard Change Requests

read-only idempotent
servicenow-create-standard-change-template

Servicenow Create a Standard Change From a Template

Capability Spec

change-management-standard-changes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ServiceNow Change Management API — Standard Changes
  description: 'ServiceNow Change Management API — Standard Changes. 2 operations. Lead operation: Servicenow List Standard
    Change Requests. Self-contained Naftiko capability covering one Servicenow business surface.'
  tags:
  - Servicenow
  - Standard Changes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SERVICENOW_API_KEY: SERVICENOW_API_KEY
capability:
  consumes:
  - type: http
    namespace: change-management-standard-changes
    baseUri: https://{instance}.service-now.com/api/sn_chg_rest/v1
    description: ServiceNow Change Management API — Standard Changes business capability. Self-contained, no shared references.
    resources:
    - name: change-standard
      path: /change/standard
      operations:
      - name: liststandardchanges
        method: GET
        description: Servicenow List Standard Change Requests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: change-standard-standard_change_template_id
      path: /change/standard/{standard_change_template_id}
      operations:
      - name: createstandardchange
        method: POST
        description: Servicenow Create a Standard Change From a Template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: standard_change_template_id
          in: path
          type: string
          description: The sys_id of the standard change template to use for creating the change request.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.SERVICENOW_API_KEY}}'
  exposes:
  - type: rest
    namespace: change-management-standard-changes-rest
    port: 8080
    description: REST adapter for ServiceNow Change Management API — Standard Changes. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/change/standard
      name: change-standard
      description: REST surface for change-standard.
      operations:
      - method: GET
        name: liststandardchanges
        description: Servicenow List Standard Change Requests
        call: change-management-standard-changes.liststandardchanges
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/change/standard/{standard-change-template-id}
      name: change-standard-standard-change-template-id
      description: REST surface for change-standard-standard_change_template_id.
      operations:
      - method: POST
        name: createstandardchange
        description: Servicenow Create a Standard Change From a Template
        call: change-management-standard-changes.createstandardchange
        with:
          standard_change_template_id: rest.standard_change_template_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: change-management-standard-changes-mcp
    port: 9090
    transport: http
    description: MCP adapter for ServiceNow Change Management API — Standard Changes. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: servicenow-list-standard-change-requests
      description: Servicenow List Standard Change Requests
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: change-management-standard-changes.liststandardchanges
      outputParameters:
      - type: object
        mapping: $.
    - name: servicenow-create-standard-change-template
      description: Servicenow Create a Standard Change From a Template
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: change-management-standard-changes.createstandardchange
      with:
        standard_change_template_id: tools.standard_change_template_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.