Langfuse · Capability

langfuse — UnstableEvaluationRules

langfuse — UnstableEvaluationRules. 5 operations. Lead operation: UnstableEvaluationRules. Self-contained Naftiko capability covering one Langfuse business surface.

Run with Naftiko LangfuseUnstableEvaluationRules

What You Can Do

POST
Unstableevaluationrulescreate — Create an evaluation rule.
/v1/api/public/unstable/evaluation-rules
GET
Unstableevaluationruleslist — List evaluation rules in the authenticated project.
/v1/api/public/unstable/evaluation-rules
GET
Unstableevaluationrulesget — Get one evaluation rule by its identifier.
/v1/api/public/unstable/evaluation-rules/{evaluationruleid}
PATCH
Unstableevaluationrulesupdate — Update an evaluation rule.
/v1/api/public/unstable/evaluation-rules/{evaluationruleid}
DELETE
Unstableevaluationrulesdelete — Delete an evaluation rule.
/v1/api/public/unstable/evaluation-rules/{evaluationruleid}

MCP Tools

create-evaluation-rule

Create an evaluation rule.

list-evaluation-rules-authenticated-project

List evaluation rules in the authenticated project.

read-only idempotent
get-one-evaluation-rule-its

Get one evaluation rule by its identifier.

read-only idempotent
update-evaluation-rule

Update an evaluation rule.

idempotent
delete-evaluation-rule

Delete an evaluation rule.

idempotent

Capability Spec

langfuse-unstableevaluationrules.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: langfuse — UnstableEvaluationRules
  description: 'langfuse — UnstableEvaluationRules. 5 operations. Lead operation: UnstableEvaluationRules. Self-contained
    Naftiko capability covering one Langfuse business surface.'
  tags:
  - Langfuse
  - UnstableEvaluationRules
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LANGFUSE_API_KEY: LANGFUSE_API_KEY
capability:
  consumes:
  - type: http
    namespace: langfuse-unstableevaluationrules
    baseUri: ''
    description: langfuse — UnstableEvaluationRules business capability. Self-contained, no shared references.
    resources:
    - name: api-public-unstable-evaluation-rules
      path: /api/public/unstable/evaluation-rules
      operations:
      - name: unstableevaluationrulescreate
        method: POST
        description: Create an evaluation rule.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: unstableevaluationruleslist
        method: GET
        description: List evaluation rules in the authenticated project.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          description: 1-based page number. Defaults to `1`.
        - name: limit
          in: query
          type: integer
          description: Maximum number of items per page. Defaults to `50`.
    - name: api-public-unstable-evaluation-rules-evaluationRuleId
      path: /api/public/unstable/evaluation-rules/{evaluationRuleId}
      operations:
      - name: unstableevaluationrulesget
        method: GET
        description: Get one evaluation rule by its identifier.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: evaluationRuleId
          in: path
          type: string
          description: Evaluation rule identifier returned by the evaluation rule endpoints.
          required: true
      - name: unstableevaluationrulesupdate
        method: PATCH
        description: Update an evaluation rule.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: evaluationRuleId
          in: path
          type: string
          description: Evaluation rule identifier.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: unstableevaluationrulesdelete
        method: DELETE
        description: Delete an evaluation rule.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: evaluationRuleId
          in: path
          type: string
          description: Evaluation rule identifier.
          required: true
    authentication:
      type: basic
      username: '{{env.LANGFUSE_USER}}'
      password: '{{env.LANGFUSE_PASS}}'
  exposes:
  - type: rest
    namespace: langfuse-unstableevaluationrules-rest
    port: 8080
    description: REST adapter for langfuse — UnstableEvaluationRules. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/public/unstable/evaluation-rules
      name: api-public-unstable-evaluation-rules
      description: REST surface for api-public-unstable-evaluation-rules.
      operations:
      - method: POST
        name: unstableevaluationrulescreate
        description: Create an evaluation rule.
        call: langfuse-unstableevaluationrules.unstableevaluationrulescreate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: unstableevaluationruleslist
        description: List evaluation rules in the authenticated project.
        call: langfuse-unstableevaluationrules.unstableevaluationruleslist
        with:
          page: rest.page
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/public/unstable/evaluation-rules/{evaluationruleid}
      name: api-public-unstable-evaluation-rules-evaluationruleid
      description: REST surface for api-public-unstable-evaluation-rules-evaluationRuleId.
      operations:
      - method: GET
        name: unstableevaluationrulesget
        description: Get one evaluation rule by its identifier.
        call: langfuse-unstableevaluationrules.unstableevaluationrulesget
        with:
          evaluationRuleId: rest.evaluationRuleId
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: unstableevaluationrulesupdate
        description: Update an evaluation rule.
        call: langfuse-unstableevaluationrules.unstableevaluationrulesupdate
        with:
          evaluationRuleId: rest.evaluationRuleId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: unstableevaluationrulesdelete
        description: Delete an evaluation rule.
        call: langfuse-unstableevaluationrules.unstableevaluationrulesdelete
        with:
          evaluationRuleId: rest.evaluationRuleId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: langfuse-unstableevaluationrules-mcp
    port: 9090
    transport: http
    description: MCP adapter for langfuse — UnstableEvaluationRules. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: create-evaluation-rule
      description: Create an evaluation rule.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: langfuse-unstableevaluationrules.unstableevaluationrulescreate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-evaluation-rules-authenticated-project
      description: List evaluation rules in the authenticated project.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: langfuse-unstableevaluationrules.unstableevaluationruleslist
      with:
        page: tools.page
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: get-one-evaluation-rule-its
      description: Get one evaluation rule by its identifier.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: langfuse-unstableevaluationrules.unstableevaluationrulesget
      with:
        evaluationRuleId: tools.evaluationRuleId
      outputParameters:
      - type: object
        mapping: $.
    - name: update-evaluation-rule
      description: Update an evaluation rule.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: langfuse-unstableevaluationrules.unstableevaluationrulesupdate
      with:
        evaluationRuleId: tools.evaluationRuleId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-evaluation-rule
      description: Delete an evaluation rule.
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: langfuse-unstableevaluationrules.unstableevaluationrulesdelete
      with:
        evaluationRuleId: tools.evaluationRuleId
      outputParameters:
      - type: object
        mapping: $.