Lincoln National · Capability

Lincoln Financial LincSmart APIs

Lincoln Financial LincSmart APIs. 3 operations. Lead operation: Sync Enrollment Data. Self-contained Naftiko capability covering one Lincoln National business surface.

Run with Naftiko Lincoln NationalLincoln Financial LincSmart APIs

What You Can Do

POST
Syncenrollment — Sync Enrollment Data
/v1/enrollment
POST
Submiteoi — Submit Evidence of Insurability
/v1/eoi
GET
Getplandesign — Get Plan Design Information
/v1/plan-design

MCP Tools

sync-enrollment-data

Sync Enrollment Data

submit-evidence-insurability

Submit Evidence of Insurability

get-plan-design-information

Get Plan Design Information

read-only idempotent

Capability Spec

lincoln-national.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Lincoln Financial LincSmart APIs
  description: 'Lincoln Financial LincSmart APIs. 3 operations. Lead operation: Sync Enrollment Data. Self-contained Naftiko
    capability covering one Lincoln National business surface.'
  tags:
  - Lincoln National
  - Lincoln Financial LincSmart APIs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LINCOLN_NATIONAL_API_KEY: LINCOLN_NATIONAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: lincoln-national
    baseUri: https://www.lincolnfinancial.com
    description: Lincoln Financial LincSmart APIs business capability. Self-contained, no shared references.
    resources:
    - name: enrollment
      path: /enrollment
      operations:
      - name: syncenrollment
        method: POST
        description: Sync Enrollment Data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: eoi
      path: /eoi
      operations:
      - name: submiteoi
        method: POST
        description: Submit Evidence of Insurability
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: plan-design
      path: /plan-design
      operations:
      - name: getplandesign
        method: GET
        description: Get Plan Design Information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: planId
          in: query
          type: string
          required: true
  exposes:
  - type: rest
    namespace: lincoln-national-rest
    port: 8080
    description: REST adapter for Lincoln Financial LincSmart APIs. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/enrollment
      name: enrollment
      description: REST surface for enrollment.
      operations:
      - method: POST
        name: syncenrollment
        description: Sync Enrollment Data
        call: lincoln-national.syncenrollment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/eoi
      name: eoi
      description: REST surface for eoi.
      operations:
      - method: POST
        name: submiteoi
        description: Submit Evidence of Insurability
        call: lincoln-national.submiteoi
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/plan-design
      name: plan-design
      description: REST surface for plan-design.
      operations:
      - method: GET
        name: getplandesign
        description: Get Plan Design Information
        call: lincoln-national.getplandesign
        with:
          planId: rest.planId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: lincoln-national-mcp
    port: 9090
    transport: http
    description: MCP adapter for Lincoln Financial LincSmart APIs. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: sync-enrollment-data
      description: Sync Enrollment Data
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: lincoln-national.syncenrollment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: submit-evidence-insurability
      description: Submit Evidence of Insurability
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: lincoln-national.submiteoi
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-plan-design-information
      description: Get Plan Design Information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: lincoln-national.getplandesign
      with:
        planId: tools.planId
      outputParameters:
      - type: object
        mapping: $.