Blockfrost · Capability

Blockfrost.io ~ API Documentation — Cardano » Mempool

Blockfrost.io ~ API Documentation — Cardano » Mempool. 3 operations. Lead operation: Blockfrost Mempool. Self-contained Naftiko capability covering one Blockfrost business surface.

Run with Naftiko BlockfrostCardano » Mempool

What You Can Do

GET
Get — Blockfrost Mempool
/v1/mempool
GET
Get — Blockfrost Mempool by Address
/v1/mempool/addresses/{address}
GET
Get — Blockfrost Specific Transaction in the Mempool
/v1/mempool/{hash}

MCP Tools

blockfrost-mempool

Blockfrost Mempool

read-only idempotent
blockfrost-mempool-address

Blockfrost Mempool by Address

read-only idempotent
blockfrost-specific-transaction-mempool

Blockfrost Specific Transaction in the Mempool

read-only idempotent

Capability Spec

blockfrost-cardano-mempool.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Blockfrost.io ~ API Documentation — Cardano » Mempool
  description: 'Blockfrost.io ~ API Documentation — Cardano » Mempool. 3 operations. Lead operation: Blockfrost Mempool. Self-contained
    Naftiko capability covering one Blockfrost business surface.'
  tags:
  - Blockfrost
  - Cardano » Mempool
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BLOCKFROST_API_KEY: BLOCKFROST_API_KEY
capability:
  consumes:
  - type: http
    namespace: blockfrost-cardano-mempool
    baseUri: https://cardano-mainnet.blockfrost.io/api/v0
    description: Blockfrost.io ~ API Documentation — Cardano » Mempool business capability. Self-contained, no shared references.
    resources:
    - name: mempool
      path: /mempool
      operations:
      - name: get
        method: GET
        description: Blockfrost Mempool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: count
          in: query
          type: integer
          description: The number of results displayed on one page.
        - name: page
          in: query
          type: integer
          description: The page number for listing the results.
        - name: order
          in: query
          type: string
          description: Ordered by the time of transaction submission.
    - name: mempool-addresses-address
      path: /mempool/addresses/{address}
      operations:
      - name: get
        method: GET
        description: Blockfrost Mempool by Address
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: address
          in: path
          type: string
          description: Bech32 address.
          required: true
        - name: count
          in: query
          type: integer
          description: The number of results displayed on one page.
        - name: page
          in: query
          type: integer
          description: The page number for listing the results.
        - name: order
          in: query
          type: string
          description: Ordered by the time of transaction submission.
    - name: mempool-hash
      path: /mempool/{hash}
      operations:
      - name: get
        method: GET
        description: Blockfrost Specific Transaction in the Mempool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: hash
          in: path
          type: string
          description: Hash of the requested transaction
          required: true
    authentication:
      type: apikey
      key: project_id
      value: '{{env.BLOCKFROST_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: blockfrost-cardano-mempool-rest
    port: 8080
    description: REST adapter for Blockfrost.io ~ API Documentation — Cardano » Mempool. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/mempool
      name: mempool
      description: REST surface for mempool.
      operations:
      - method: GET
        name: get
        description: Blockfrost Mempool
        call: blockfrost-cardano-mempool.get
        with:
          count: rest.count
          page: rest.page
          order: rest.order
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/mempool/addresses/{address}
      name: mempool-addresses-address
      description: REST surface for mempool-addresses-address.
      operations:
      - method: GET
        name: get
        description: Blockfrost Mempool by Address
        call: blockfrost-cardano-mempool.get
        with:
          address: rest.address
          count: rest.count
          page: rest.page
          order: rest.order
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/mempool/{hash}
      name: mempool-hash
      description: REST surface for mempool-hash.
      operations:
      - method: GET
        name: get
        description: Blockfrost Specific Transaction in the Mempool
        call: blockfrost-cardano-mempool.get
        with:
          hash: rest.hash
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: blockfrost-cardano-mempool-mcp
    port: 9090
    transport: http
    description: MCP adapter for Blockfrost.io ~ API Documentation — Cardano » Mempool. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: blockfrost-mempool
      description: Blockfrost Mempool
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: blockfrost-cardano-mempool.get
      with:
        count: tools.count
        page: tools.page
        order: tools.order
      outputParameters:
      - type: object
        mapping: $.
    - name: blockfrost-mempool-address
      description: Blockfrost Mempool by Address
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: blockfrost-cardano-mempool.get
      with:
        address: tools.address
        count: tools.count
        page: tools.page
        order: tools.order
      outputParameters:
      - type: object
        mapping: $.
    - name: blockfrost-specific-transaction-mempool
      description: Blockfrost Specific Transaction in the Mempool
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: blockfrost-cardano-mempool.get
      with:
        hash: tools.hash
      outputParameters:
      - type: object
        mapping: $.