CryptoQuant · Capability

CryptoQuant API — On-Chain

CryptoQuant API — On-Chain. 2 operations. Lead operation: Bitcoin MVRV. Self-contained Naftiko capability covering one Cryptoquant business surface.

Run with Naftiko CryptoquantOn-Chain

What You Can Do

GET
Getbtcmvrv — Bitcoin MVRV
/v1/btc/network-indicator/mvrv
GET
Getbtcsopr — Bitcoin SOPR
/v1/btc/network-indicator/sopr

MCP Tools

bitcoin-mvrv

Bitcoin MVRV

read-only idempotent
bitcoin-sopr

Bitcoin SOPR

read-only idempotent

Capability Spec

cryptoquant-on-chain.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: CryptoQuant API — On-Chain
  description: 'CryptoQuant API — On-Chain. 2 operations. Lead operation: Bitcoin MVRV. Self-contained Naftiko capability
    covering one Cryptoquant business surface.'
  tags:
  - Cryptoquant
  - On-Chain
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CRYPTOQUANT_API_KEY: CRYPTOQUANT_API_KEY
capability:
  consumes:
  - type: http
    namespace: cryptoquant-on-chain
    baseUri: https://api.cryptoquant.com/v1
    description: CryptoQuant API — On-Chain business capability. Self-contained, no shared references.
    resources:
    - name: btc-network-indicator-mvrv
      path: /btc/network-indicator/mvrv
      operations:
      - name: getbtcmvrv
        method: GET
        description: Bitcoin MVRV
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: btc-network-indicator-sopr
      path: /btc/network-indicator/sopr
      operations:
      - name: getbtcsopr
        method: GET
        description: Bitcoin SOPR
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CRYPTOQUANT_API_KEY}}'
  exposes:
  - type: rest
    namespace: cryptoquant-on-chain-rest
    port: 8080
    description: REST adapter for CryptoQuant API — On-Chain. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/btc/network-indicator/mvrv
      name: btc-network-indicator-mvrv
      description: REST surface for btc-network-indicator-mvrv.
      operations:
      - method: GET
        name: getbtcmvrv
        description: Bitcoin MVRV
        call: cryptoquant-on-chain.getbtcmvrv
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/btc/network-indicator/sopr
      name: btc-network-indicator-sopr
      description: REST surface for btc-network-indicator-sopr.
      operations:
      - method: GET
        name: getbtcsopr
        description: Bitcoin SOPR
        call: cryptoquant-on-chain.getbtcsopr
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cryptoquant-on-chain-mcp
    port: 9090
    transport: http
    description: MCP adapter for CryptoQuant API — On-Chain. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: bitcoin-mvrv
      description: Bitcoin MVRV
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cryptoquant-on-chain.getbtcmvrv
      outputParameters:
      - type: object
        mapping: $.
    - name: bitcoin-sopr
      description: Bitcoin SOPR
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cryptoquant-on-chain.getbtcsopr
      outputParameters:
      - type: object
        mapping: $.