Traefik Labs · Capability

Traefik Proxy REST API — Entrypoints

Traefik Proxy REST API — Entrypoints. 2 operations. Lead operation: List All Entry Points. Self-contained Naftiko capability covering one Traefik business surface.

Run with Naftiko TraefikEntrypoints

What You Can Do

GET
Listentrypoints — List All Entry Points
/v1/entrypoints
GET
Getentrypoint — Get a Specific Entry Point
/v1/entrypoints/{name}

MCP Tools

list-all-entry-points

List All Entry Points

read-only idempotent
get-specific-entry-point

Get a Specific Entry Point

read-only idempotent

Capability Spec

proxy-entrypoints.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Traefik Proxy REST API — Entrypoints
  description: 'Traefik Proxy REST API — Entrypoints. 2 operations. Lead operation: List All Entry Points. Self-contained
    Naftiko capability covering one Traefik business surface.'
  tags:
  - Traefik
  - Entrypoints
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TRAEFIK_API_KEY: TRAEFIK_API_KEY
capability:
  consumes:
  - type: http
    namespace: proxy-entrypoints
    baseUri: http://localhost:8080/api
    description: Traefik Proxy REST API — Entrypoints business capability. Self-contained, no shared references.
    resources:
    - name: entrypoints
      path: /entrypoints
      operations:
      - name: listentrypoints
        method: GET
        description: List All Entry Points
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: entrypoints-name
      path: /entrypoints/{name}
      operations:
      - name: getentrypoint
        method: GET
        description: Get a Specific Entry Point
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: path
          type: string
          description: The name of the entry point.
          required: true
  exposes:
  - type: rest
    namespace: proxy-entrypoints-rest
    port: 8080
    description: REST adapter for Traefik Proxy REST API — Entrypoints. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/entrypoints
      name: entrypoints
      description: REST surface for entrypoints.
      operations:
      - method: GET
        name: listentrypoints
        description: List All Entry Points
        call: proxy-entrypoints.listentrypoints
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/entrypoints/{name}
      name: entrypoints-name
      description: REST surface for entrypoints-name.
      operations:
      - method: GET
        name: getentrypoint
        description: Get a Specific Entry Point
        call: proxy-entrypoints.getentrypoint
        with:
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: proxy-entrypoints-mcp
    port: 9090
    transport: http
    description: MCP adapter for Traefik Proxy REST API — Entrypoints. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-all-entry-points
      description: List All Entry Points
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: proxy-entrypoints.listentrypoints
      outputParameters:
      - type: object
        mapping: $.
    - name: get-specific-entry-point
      description: Get a Specific Entry Point
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: proxy-entrypoints.getentrypoint
      with:
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.