Salesloft · Capability

Salesloft — Opportunity People

Salesloft — Opportunity People. 3 operations. Lead operation: Salesloft List Opportunity/person Associations. Self-contained Naftiko capability covering one Salesloft business surface.

Run with Naftiko SalesloftOpportunity People

What You Can Do

GET
Get — Salesloft List Opportunity/person Associations
/v1/opportunity-people
POST
Post — Salesloft Create a Sales Opportunity Person
/v1/opportunity-people
DELETE
Delete — Salesloft Delete a Opportunity Association
/v1/opportunity-people/{id}

MCP Tools

salesloft-list-opportunity-person-associations

Salesloft List Opportunity/person Associations

read-only idempotent
salesloft-create-sales-opportunity-person

Salesloft Create a Sales Opportunity Person

salesloft-delete-opportunity-association

Salesloft Delete a Opportunity Association

idempotent

Capability Spec

salesloft-opportunity-people.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesloft — Opportunity People
  description: 'Salesloft — Opportunity People. 3 operations. Lead operation: Salesloft List Opportunity/person Associations.
    Self-contained Naftiko capability covering one Salesloft business surface.'
  tags:
  - Salesloft
  - Opportunity People
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SALESLOFT_API_KEY: SALESLOFT_API_KEY
capability:
  consumes:
  - type: http
    namespace: salesloft-opportunity-people
    baseUri: http://{{salesloft_api_base_url}}
    description: Salesloft — Opportunity People business capability. Self-contained, no shared references.
    resources:
    - name: opportunity_people
      path: /opportunity_people
      operations:
      - name: get
        method: GET
        description: Salesloft List Opportunity/person Associations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: Salesloft Create a Sales Opportunity Person
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: opportunity_people-id
      path: /opportunity_people/{id}
      operations:
      - name: delete
        method: DELETE
        description: Salesloft Delete a Opportunity Association
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.SALESLOFT_API_KEY}}'
  exposes:
  - type: rest
    namespace: salesloft-opportunity-people-rest
    port: 8080
    description: REST adapter for Salesloft — Opportunity People. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/opportunity-people
      name: opportunity-people
      description: REST surface for opportunity_people.
      operations:
      - method: GET
        name: get
        description: Salesloft List Opportunity/person Associations
        call: salesloft-opportunity-people.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Salesloft Create a Sales Opportunity Person
        call: salesloft-opportunity-people.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/opportunity-people/{id}
      name: opportunity-people-id
      description: REST surface for opportunity_people-id.
      operations:
      - method: DELETE
        name: delete
        description: Salesloft Delete a Opportunity Association
        call: salesloft-opportunity-people.delete
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: salesloft-opportunity-people-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesloft — Opportunity People. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: salesloft-list-opportunity-person-associations
      description: Salesloft List Opportunity/person Associations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesloft-opportunity-people.get
      outputParameters:
      - type: object
        mapping: $.
    - name: salesloft-create-sales-opportunity-person
      description: Salesloft Create a Sales Opportunity Person
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: salesloft-opportunity-people.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: salesloft-delete-opportunity-association
      description: Salesloft Delete a Opportunity Association
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: salesloft-opportunity-people.delete
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.