Prosci · Capability

Prosci Change Management API — Change Plans

Prosci Change Management API — Change Plans. 4 operations. Lead operation: Prosci List change plans. Self-contained Naftiko capability covering one Prosci business surface.

Run with Naftiko ProsciChange Plans

What You Can Do

GET
Listchangeplans — Prosci List change plans
/v1/projects/{projectid}/change-plans
POST
Createchangeplan — Prosci Create a change plan
/v1/projects/{projectid}/change-plans
GET
Getchangeplan — Prosci Get a change plan
/v1/projects/{projectid}/change-plans/{planid}
PUT
Updatechangeplan — Prosci Update a change plan
/v1/projects/{projectid}/change-plans/{planid}

MCP Tools

prosci-list-change-plans

Prosci List change plans

read-only idempotent
prosci-create-change-plan

Prosci Create a change plan

prosci-get-change-plan

Prosci Get a change plan

read-only idempotent
prosci-update-change-plan

Prosci Update a change plan

idempotent

Capability Spec

change-management-change-plans.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Prosci Change Management API — Change Plans
  description: 'Prosci Change Management API — Change Plans. 4 operations. Lead operation: Prosci List change plans. Self-contained
    Naftiko capability covering one Prosci business surface.'
  tags:
  - Prosci
  - Change Plans
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PROSCI_API_KEY: PROSCI_API_KEY
capability:
  consumes:
  - type: http
    namespace: change-management-change-plans
    baseUri: https://api.prosci.com/v1
    description: Prosci Change Management API — Change Plans business capability. Self-contained, no shared references.
    resources:
    - name: projects-projectId-change-plans
      path: /projects/{projectId}/change-plans
      operations:
      - name: listchangeplans
        method: GET
        description: Prosci List change plans
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: planType
          in: query
          type: string
          description: Filter by plan type
      - name: createchangeplan
        method: POST
        description: Prosci Create a change plan
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: projects-projectId-change-plans-planId
      path: /projects/{projectId}/change-plans/{planId}
      operations:
      - name: getchangeplan
        method: GET
        description: Prosci Get a change plan
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatechangeplan
        method: PUT
        description: Prosci Update a change plan
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.PROSCI_API_KEY}}'
  exposes:
  - type: rest
    namespace: change-management-change-plans-rest
    port: 8080
    description: REST adapter for Prosci Change Management API — Change Plans. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/projects/{projectid}/change-plans
      name: projects-projectid-change-plans
      description: REST surface for projects-projectId-change-plans.
      operations:
      - method: GET
        name: listchangeplans
        description: Prosci List change plans
        call: change-management-change-plans.listchangeplans
        with:
          planType: rest.planType
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createchangeplan
        description: Prosci Create a change plan
        call: change-management-change-plans.createchangeplan
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{projectid}/change-plans/{planid}
      name: projects-projectid-change-plans-planid
      description: REST surface for projects-projectId-change-plans-planId.
      operations:
      - method: GET
        name: getchangeplan
        description: Prosci Get a change plan
        call: change-management-change-plans.getchangeplan
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatechangeplan
        description: Prosci Update a change plan
        call: change-management-change-plans.updatechangeplan
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: change-management-change-plans-mcp
    port: 9090
    transport: http
    description: MCP adapter for Prosci Change Management API — Change Plans. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: prosci-list-change-plans
      description: Prosci List change plans
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: change-management-change-plans.listchangeplans
      with:
        planType: tools.planType
      outputParameters:
      - type: object
        mapping: $.
    - name: prosci-create-change-plan
      description: Prosci Create a change plan
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: change-management-change-plans.createchangeplan
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: prosci-get-change-plan
      description: Prosci Get a change plan
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: change-management-change-plans.getchangeplan
      outputParameters:
      - type: object
        mapping: $.
    - name: prosci-update-change-plan
      description: Prosci Update a change plan
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: change-management-change-plans.updatechangeplan
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.