Prosci · Capability

Prosci Change Management API — Stakeholders

Prosci Change Management API — Stakeholders. 2 operations. Lead operation: Prosci List stakeholders. Self-contained Naftiko capability covering one Prosci business surface.

Run with Naftiko ProsciStakeholders

What You Can Do

GET
Liststakeholders — Prosci List stakeholders
/v1/projects/{projectid}/stakeholders
POST
Createstakeholder — Prosci Add a stakeholder
/v1/projects/{projectid}/stakeholders

MCP Tools

prosci-list-stakeholders

Prosci List stakeholders

read-only idempotent
prosci-add-stakeholder

Prosci Add a stakeholder

Capability Spec

change-management-stakeholders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Prosci Change Management API — Stakeholders
  description: 'Prosci Change Management API — Stakeholders. 2 operations. Lead operation: Prosci List stakeholders. Self-contained
    Naftiko capability covering one Prosci business surface.'
  tags:
  - Prosci
  - Stakeholders
  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-stakeholders
    baseUri: https://api.prosci.com/v1
    description: Prosci Change Management API — Stakeholders business capability. Self-contained, no shared references.
    resources:
    - name: projects-projectId-stakeholders
      path: /projects/{projectId}/stakeholders
      operations:
      - name: liststakeholders
        method: GET
        description: Prosci List stakeholders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: role
          in: query
          type: string
          description: Filter stakeholders by role
      - name: createstakeholder
        method: POST
        description: Prosci Add a stakeholder
        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-stakeholders-rest
    port: 8080
    description: REST adapter for Prosci Change Management API — Stakeholders. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/projects/{projectid}/stakeholders
      name: projects-projectid-stakeholders
      description: REST surface for projects-projectId-stakeholders.
      operations:
      - method: GET
        name: liststakeholders
        description: Prosci List stakeholders
        call: change-management-stakeholders.liststakeholders
        with:
          role: rest.role
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createstakeholder
        description: Prosci Add a stakeholder
        call: change-management-stakeholders.createstakeholder
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: change-management-stakeholders-mcp
    port: 9090
    transport: http
    description: MCP adapter for Prosci Change Management API — Stakeholders. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: prosci-list-stakeholders
      description: Prosci List stakeholders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: change-management-stakeholders.liststakeholders
      with:
        role: tools.role
      outputParameters:
      - type: object
        mapping: $.
    - name: prosci-add-stakeholder
      description: Prosci Add a stakeholder
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: change-management-stakeholders.createstakeholder
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.