Pocket Network · Capability

Pocket Network Shannon — Services

List the services (data sources) registered on Shannon and their compute-unit pricing. Lead operation: listShannonServices. Self-contained Naftiko capability for the Service module.

Run with Naftiko Pocket NetworkShannonServices

What You Can Do

GET
Listshannonservices — List Shannon Services
/v1/services
GET
Getshannonservice — Get Shannon Service
/v1/services/{serviceId}

MCP Tools

pocket-network-list-services

List Shannon Services

read-only idempotent
pocket-network-get-service

Get Shannon Service

read-only idempotent

Capability Spec

shannon-services.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pocket Network Shannon — Services
  description: 'List the services (data sources) registered on Shannon and their compute-unit pricing.
    Lead operation: listShannonServices. Self-contained Naftiko capability for the Service module.'
  tags:
  - Pocket Network
  - Shannon
  - Services
  created: '2026-05-25'
  modified: '2026-05-25'
binds: []
capability:
  consumes:
  - type: http
    namespace: shannon-services
    baseUri: https://shannon-grove-api.mainnet.poktroll.com
    description: Shannon service-module capability.
    resources:
    - name: service
      path: /pocket/service/v1/service
      operations:
      - name: listshannonservices
        method: GET
        description: List Shannon Services
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: service-by-id
      path: /pocket/service/v1/service/{serviceId}
      operations:
      - name: getshannonservice
        method: GET
        description: Get Shannon Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: serviceId
          in: path
          type: string
          required: true
    authentication:
      type: none
  exposes:
  - type: rest
    namespace: shannon-services-rest
    port: 8080
    resources:
    - path: /v1/services
      name: service
      operations:
      - method: GET
        name: listshannonservices
        description: List Shannon Services
        call: shannon-services.listshannonservices
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/{serviceId}
      name: service-by-id
      operations:
      - method: GET
        name: getshannonservice
        description: Get Shannon Service
        call: shannon-services.getshannonservice
        with:
          serviceId: rest.path.serviceId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: shannon-services-mcp
    port: 9090
    transport: http
    tools:
    - name: pocket-network-list-services
      description: List Shannon Services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: shannon-services.listshannonservices
      outputParameters:
      - type: object
        mapping: $.
    - name: pocket-network-get-service
      description: Get Shannon Service
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: shannon-services.getshannonservice
      with:
        serviceId: tools.serviceId
      outputParameters:
      - type: object
        mapping: $.