Bloomberg AIM · Capability

Bloomberg HTTP API — Instruments

Bloomberg HTTP API — Instruments. 3 operations. Lead operation: Search for Curves. Self-contained Naftiko capability covering one Bloomberg Aim business surface.

Run with Naftiko Bloomberg AimInstruments

What You Can Do

POST
Curvelistrequest — Search for Curves
/v1/request/blp/instruments/curvelistrequest
POST
Governmentlookuprequest — Look up Government Securities
/v1/request/blp/instruments/governmentlookuprequest
POST
Instrumentlistrequest — Search for Instruments
/v1/request/blp/instruments/instrumentlistrequest

MCP Tools

search-curves

Search for Curves

read-only
look-up-government-securities

Look up Government Securities

search-instruments

Search for Instruments

read-only

Capability Spec

bloomberg-http-instruments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bloomberg HTTP API — Instruments
  description: 'Bloomberg HTTP API — Instruments. 3 operations. Lead operation: Search for Curves. Self-contained Naftiko
    capability covering one Bloomberg Aim business surface.'
  tags:
  - Bloomberg Aim
  - Instruments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BLOOMBERG_AIM_API_KEY: BLOOMBERG_AIM_API_KEY
capability:
  consumes:
  - type: http
    namespace: bloomberg-http-instruments
    baseUri: https://localhost:3000
    description: Bloomberg HTTP API — Instruments business capability. Self-contained, no shared references.
    resources:
    - name: request-blp-instruments-CurveListRequest
      path: /request/blp/instruments/CurveListRequest
      operations:
      - name: curvelistrequest
        method: POST
        description: Search for Curves
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: request-blp-instruments-GovernmentLookupRequest
      path: /request/blp/instruments/GovernmentLookupRequest
      operations:
      - name: governmentlookuprequest
        method: POST
        description: Look up Government Securities
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: request-blp-instruments-InstrumentListRequest
      path: /request/blp/instruments/InstrumentListRequest
      operations:
      - name: instrumentlistrequest
        method: POST
        description: Search for Instruments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.BLOOMBERG_AIM_USER}}'
      password: '{{env.BLOOMBERG_AIM_PASS}}'
  exposes:
  - type: rest
    namespace: bloomberg-http-instruments-rest
    port: 8080
    description: REST adapter for Bloomberg HTTP API — Instruments. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/request/blp/instruments/curvelistrequest
      name: request-blp-instruments-curvelistrequest
      description: REST surface for request-blp-instruments-CurveListRequest.
      operations:
      - method: POST
        name: curvelistrequest
        description: Search for Curves
        call: bloomberg-http-instruments.curvelistrequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/request/blp/instruments/governmentlookuprequest
      name: request-blp-instruments-governmentlookuprequest
      description: REST surface for request-blp-instruments-GovernmentLookupRequest.
      operations:
      - method: POST
        name: governmentlookuprequest
        description: Look up Government Securities
        call: bloomberg-http-instruments.governmentlookuprequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/request/blp/instruments/instrumentlistrequest
      name: request-blp-instruments-instrumentlistrequest
      description: REST surface for request-blp-instruments-InstrumentListRequest.
      operations:
      - method: POST
        name: instrumentlistrequest
        description: Search for Instruments
        call: bloomberg-http-instruments.instrumentlistrequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bloomberg-http-instruments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Bloomberg HTTP API — Instruments. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: search-curves
      description: Search for Curves
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: bloomberg-http-instruments.curvelistrequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: look-up-government-securities
      description: Look up Government Securities
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bloomberg-http-instruments.governmentlookuprequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: search-instruments
      description: Search for Instruments
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: bloomberg-http-instruments.instrumentlistrequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.