Cisco Voice Portal · Capability

Cisco Voice Portal Call Control API — SIP Sessions

Cisco Voice Portal Call Control API — SIP Sessions. 2 operations. Lead operation: Cisco Voice Portal List Active Sip Sessions. Self-contained Naftiko capability covering one Cisco Voice Portal business surface.

Run with Naftiko Cisco Voice PortalSIP Sessions

What You Can Do

GET
Listsipsessions — Cisco Voice Portal List Active Sip Sessions
/v1/sip/session
GET
Getsipsession — Cisco Voice Portal Get Sip Session Details
/v1/sip/session/{sessionid}

MCP Tools

cisco-voice-portal-list-active

Cisco Voice Portal List Active Sip Sessions

read-only idempotent
cisco-voice-portal-get-sip

Cisco Voice Portal Get Sip Session Details

read-only idempotent

Capability Spec

call-control-sip-sessions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cisco Voice Portal Call Control API — SIP Sessions
  description: 'Cisco Voice Portal Call Control API — SIP Sessions. 2 operations. Lead operation: Cisco Voice Portal List
    Active Sip Sessions. Self-contained Naftiko capability covering one Cisco Voice Portal business surface.'
  tags:
  - Cisco Voice Portal
  - SIP Sessions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CISCO_VOICE_PORTAL_API_KEY: CISCO_VOICE_PORTAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: call-control-sip-sessions
    baseUri: https://{call-server}:8000/cvp/rest
    description: Cisco Voice Portal Call Control API — SIP Sessions business capability. Self-contained, no shared references.
    resources:
    - name: sip-session
      path: /sip/session
      operations:
      - name: listsipsessions
        method: GET
        description: Cisco Voice Portal List Active Sip Sessions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: integer
    - name: sip-session-sessionId
      path: /sip/session/{sessionId}
      operations:
      - name: getsipsession
        method: GET
        description: Cisco Voice Portal Get Sip Session Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sessionId
          in: path
          type: string
          required: true
    authentication:
      type: basic
      username: '{{env.CISCO_VOICE_PORTAL_USER}}'
      password: '{{env.CISCO_VOICE_PORTAL_PASS}}'
  exposes:
  - type: rest
    namespace: call-control-sip-sessions-rest
    port: 8080
    description: REST adapter for Cisco Voice Portal Call Control API — SIP Sessions. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/sip/session
      name: sip-session
      description: REST surface for sip-session.
      operations:
      - method: GET
        name: listsipsessions
        description: Cisco Voice Portal List Active Sip Sessions
        call: call-control-sip-sessions.listsipsessions
        with:
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sip/session/{sessionid}
      name: sip-session-sessionid
      description: REST surface for sip-session-sessionId.
      operations:
      - method: GET
        name: getsipsession
        description: Cisco Voice Portal Get Sip Session Details
        call: call-control-sip-sessions.getsipsession
        with:
          sessionId: rest.sessionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: call-control-sip-sessions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cisco Voice Portal Call Control API — SIP Sessions. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: cisco-voice-portal-list-active
      description: Cisco Voice Portal List Active Sip Sessions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: call-control-sip-sessions.listsipsessions
      with:
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: cisco-voice-portal-get-sip
      description: Cisco Voice Portal Get Sip Session Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: call-control-sip-sessions.getsipsession
      with:
        sessionId: tools.sessionId
      outputParameters:
      - type: object
        mapping: $.