Nubela · Capability

Nubela Proxycurl API — Employee

Nubela Proxycurl API — Employee. 3 operations. Lead operation: Enrich a professional profile by email or by name and employer. Self-contained Naftiko capability covering one Nubela business surface.

Run with Naftiko NubelaEmployee

What You Can Do

GET
Getemployeeprofile — Enrich a professional profile by email or by name and employer
/v1/employee/profile
GET
Getsimilaremployees — Find similar professionals at competing companies
/v1/employee/similar
GET
Getemployeeworkemail — Find a work email given a person name and company domain
/v1/employee/work-email

MCP Tools

enrich-professional-profile-email-name

Enrich a professional profile by email or by name and employer

read-only idempotent
find-similar-professionals-competing-companies

Find similar professionals at competing companies

read-only idempotent
find-work-email-given-person

Find a work email given a person name and company domain

read-only idempotent

Capability Spec

nubela-employee.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Nubela Proxycurl API — Employee
  description: 'Nubela Proxycurl API — Employee. 3 operations. Lead operation: Enrich a professional profile by email or by
    name and employer. Self-contained Naftiko capability covering one Nubela business surface.'
  tags:
  - Nubela
  - Employee
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NUBELA_API_KEY: NUBELA_API_KEY
capability:
  consumes:
  - type: http
    namespace: nubela-employee
    baseUri: https://nubela.co/proxycurl/api
    description: Nubela Proxycurl API — Employee business capability. Self-contained, no shared references.
    resources:
    - name: employee-profile
      path: /employee/profile
      operations:
      - name: getemployeeprofile
        method: GET
        description: Enrich a professional profile by email or by name and employer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: employee-similar
      path: /employee/similar
      operations:
      - name: getsimilaremployees
        method: GET
        description: Find similar professionals at competing companies
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: employee-work-email
      path: /employee/work-email
      operations:
      - name: getemployeeworkemail
        method: GET
        description: Find a work email given a person name and company domain
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.NUBELA_API_KEY}}'
  exposes:
  - type: rest
    namespace: nubela-employee-rest
    port: 8080
    description: REST adapter for Nubela Proxycurl API — Employee. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/employee/profile
      name: employee-profile
      description: REST surface for employee-profile.
      operations:
      - method: GET
        name: getemployeeprofile
        description: Enrich a professional profile by email or by name and employer
        call: nubela-employee.getemployeeprofile
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/employee/similar
      name: employee-similar
      description: REST surface for employee-similar.
      operations:
      - method: GET
        name: getsimilaremployees
        description: Find similar professionals at competing companies
        call: nubela-employee.getsimilaremployees
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/employee/work-email
      name: employee-work-email
      description: REST surface for employee-work-email.
      operations:
      - method: GET
        name: getemployeeworkemail
        description: Find a work email given a person name and company domain
        call: nubela-employee.getemployeeworkemail
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: nubela-employee-mcp
    port: 9090
    transport: http
    description: MCP adapter for Nubela Proxycurl API — Employee. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: enrich-professional-profile-email-name
      description: Enrich a professional profile by email or by name and employer
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: nubela-employee.getemployeeprofile
      outputParameters:
      - type: object
        mapping: $.
    - name: find-similar-professionals-competing-companies
      description: Find similar professionals at competing companies
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: nubela-employee.getsimilaremployees
      outputParameters:
      - type: object
        mapping: $.
    - name: find-work-email-given-person
      description: Find a work email given a person name and company domain
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: nubela-employee.getemployeeworkemail
      outputParameters:
      - type: object
        mapping: $.