Bloomberg AIM · Capability

Bloomberg HTTP API — Field Search

Bloomberg HTTP API — Field Search. 2 operations. Lead operation: Get Field Information. Self-contained Naftiko capability covering one Bloomberg Aim business surface.

Run with Naftiko Bloomberg AimField Search

What You Can Do

POST
Fieldinforequest — Get Field Information
/v1/request/blp/refdata/fieldinforequest
POST
Fieldsearchrequest — Search for Fields
/v1/request/blp/refdata/fieldsearchrequest

MCP Tools

get-field-information

Get Field Information

read-only
search-fields

Search for Fields

read-only

Capability Spec

bloomberg-http-field-search.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bloomberg HTTP API — Field Search
  description: 'Bloomberg HTTP API — Field Search. 2 operations. Lead operation: Get Field Information. Self-contained Naftiko
    capability covering one Bloomberg Aim business surface.'
  tags:
  - Bloomberg Aim
  - Field Search
  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-field-search
    baseUri: https://localhost:3000
    description: Bloomberg HTTP API — Field Search business capability. Self-contained, no shared references.
    resources:
    - name: request-blp-refdata-FieldInfoRequest
      path: /request/blp/refdata/FieldInfoRequest
      operations:
      - name: fieldinforequest
        method: POST
        description: Get Field Information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: request-blp-refdata-FieldSearchRequest
      path: /request/blp/refdata/FieldSearchRequest
      operations:
      - name: fieldsearchrequest
        method: POST
        description: Search for Fields
        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-field-search-rest
    port: 8080
    description: REST adapter for Bloomberg HTTP API — Field Search. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/request/blp/refdata/fieldinforequest
      name: request-blp-refdata-fieldinforequest
      description: REST surface for request-blp-refdata-FieldInfoRequest.
      operations:
      - method: POST
        name: fieldinforequest
        description: Get Field Information
        call: bloomberg-http-field-search.fieldinforequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/request/blp/refdata/fieldsearchrequest
      name: request-blp-refdata-fieldsearchrequest
      description: REST surface for request-blp-refdata-FieldSearchRequest.
      operations:
      - method: POST
        name: fieldsearchrequest
        description: Search for Fields
        call: bloomberg-http-field-search.fieldsearchrequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bloomberg-http-field-search-mcp
    port: 9090
    transport: http
    description: MCP adapter for Bloomberg HTTP API — Field Search. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-field-information
      description: Get Field Information
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: bloomberg-http-field-search.fieldinforequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: search-fields
      description: Search for Fields
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: bloomberg-http-field-search.fieldsearchrequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.