Coresignal · Capability

Coresignal Multi-source Company API — Collect

Coresignal Multi-source Company API — Collect. 2 operations. Lead operation: Bulk Collect Companies. Self-contained Naftiko capability covering one Coresignal business surface.

Run with Naftiko CoresignalCollect

What You Can Do

POST
Bulkcollectcompanies — Bulk Collect Companies
/v1/bulk-collect
GET
Collectcompany — Collect a Company record
/v1/collect/{id}

MCP Tools

bulk-collect-companies

Bulk Collect Companies

collect-company-record

Collect a Company record

read-only idempotent

Capability Spec

multi-source-company-collect.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Coresignal Multi-source Company API — Collect
  description: 'Coresignal Multi-source Company API — Collect. 2 operations. Lead operation: Bulk Collect Companies. Self-contained
    Naftiko capability covering one Coresignal business surface.'
  tags:
  - Coresignal
  - Collect
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CORESIGNAL_API_KEY: CORESIGNAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: multi-source-company-collect
    baseUri: https://api.coresignal.com/cdapi/v2/multi_source_company
    description: Coresignal Multi-source Company API — Collect business capability. Self-contained, no shared references.
    resources:
    - name: bulk_collect
      path: /bulk_collect
      operations:
      - name: bulkcollectcompanies
        method: POST
        description: Bulk Collect Companies
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: collect-id
      path: /collect/{id}
      operations:
      - name: collectcompany
        method: GET
        description: Collect a Company record
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: integer
          description: Coresignal internal company ID
          required: true
    authentication:
      type: apikey
      key: apikey
      value: '{{env.CORESIGNAL_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: multi-source-company-collect-rest
    port: 8080
    description: REST adapter for Coresignal Multi-source Company API — Collect. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/bulk-collect
      name: bulk-collect
      description: REST surface for bulk_collect.
      operations:
      - method: POST
        name: bulkcollectcompanies
        description: Bulk Collect Companies
        call: multi-source-company-collect.bulkcollectcompanies
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/collect/{id}
      name: collect-id
      description: REST surface for collect-id.
      operations:
      - method: GET
        name: collectcompany
        description: Collect a Company record
        call: multi-source-company-collect.collectcompany
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: multi-source-company-collect-mcp
    port: 9090
    transport: http
    description: MCP adapter for Coresignal Multi-source Company API — Collect. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: bulk-collect-companies
      description: Bulk Collect Companies
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: multi-source-company-collect.bulkcollectcompanies
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: collect-company-record
      description: Collect a Company record
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: multi-source-company-collect.collectcompany
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.