OpenPanel · Capability

OpenPanel API — Profile

OpenPanel API — Profile. 3 operations. Lead operation: Profile. Self-contained Naftiko capability covering one Openpanel business surface.

Run with Naftiko OpenpanelProfile

What You Can Do

POST
Post — Identify or update a user profile.
/v1/profile
POST
Post — Decrement a numeric property on a user profile.
/v1/profile/decrement
POST
Post — Increment a numeric property on a user profile.
/v1/profile/increment

MCP Tools

identify-update-user-profile

Identify or update a user profile.

decrement-numeric-property-user-profile

Decrement a numeric property on a user profile.

increment-numeric-property-user-profile

Increment a numeric property on a user profile.

Capability Spec

openpanel-profile.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: OpenPanel API — Profile
  description: 'OpenPanel API — Profile. 3 operations. Lead operation: Profile. Self-contained Naftiko capability covering
    one Openpanel business surface.'
  tags:
  - Openpanel
  - Profile
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    OPENPANEL_API_KEY: OPENPANEL_API_KEY
capability:
  consumes:
  - type: http
    namespace: openpanel-profile
    baseUri: ''
    description: OpenPanel API — Profile business capability. Self-contained, no shared references.
    resources:
    - name: profile
      path: /profile/
      operations:
      - name: post
        method: POST
        description: Identify or update a user profile.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: profile-decrement
      path: /profile/decrement
      operations:
      - name: post
        method: POST
        description: Decrement a numeric property on a user profile.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: profile-increment
      path: /profile/increment
      operations:
      - name: post
        method: POST
        description: Increment a numeric property on a user profile.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: openpanel-profile-rest
    port: 8080
    description: REST adapter for OpenPanel API — Profile. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/profile
      name: profile
      description: REST surface for profile.
      operations:
      - method: POST
        name: post
        description: Identify or update a user profile.
        call: openpanel-profile.post
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/profile/decrement
      name: profile-decrement
      description: REST surface for profile-decrement.
      operations:
      - method: POST
        name: post
        description: Decrement a numeric property on a user profile.
        call: openpanel-profile.post
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/profile/increment
      name: profile-increment
      description: REST surface for profile-increment.
      operations:
      - method: POST
        name: post
        description: Increment a numeric property on a user profile.
        call: openpanel-profile.post
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: openpanel-profile-mcp
    port: 9090
    transport: http
    description: MCP adapter for OpenPanel API — Profile. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: identify-update-user-profile
      description: Identify or update a user profile.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: openpanel-profile.post
      outputParameters:
      - type: object
        mapping: $.
    - name: decrement-numeric-property-user-profile
      description: Decrement a numeric property on a user profile.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: openpanel-profile.post
      outputParameters:
      - type: object
        mapping: $.
    - name: increment-numeric-property-user-profile
      description: Increment a numeric property on a user profile.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: openpanel-profile.post
      outputParameters:
      - type: object
        mapping: $.