Sonatype · Capability

Sonatype Lifecycle Public REST API — Config Proxy Server

Sonatype Lifecycle Public REST API — Config Proxy Server. 3 operations. Lead operation: Config Proxy Server. Self-contained Naftiko capability covering one Sonatype business surface.

Run with Naftiko SonatypeConfig Proxy Server

What You Can Do

DELETE
Deleteconfiguration4 — Use this method to remove an existing HTTP proxy server configuration.
/v1/api/v2/config/httpproxyserver
GET
Getconfiguration4 — Use this method to inspect an existing HTTP proxy server configuration.
/v1/api/v2/config/httpproxyserver
PUT
Setconfiguration4 — Use this method to create or update an existing HTTP proxy server configuration.
/v1/api/v2/config/httpproxyserver

MCP Tools

use-this-method-remove-existing

Use this method to remove an existing HTTP proxy server configuration.

idempotent
use-this-method-inspect-existing

Use this method to inspect an existing HTTP proxy server configuration.

read-only idempotent
use-this-method-create-update

Use this method to create or update an existing HTTP proxy server configuration.

idempotent

Capability Spec

lifecycle-config-proxy-server.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sonatype Lifecycle Public REST API — Config Proxy Server
  description: 'Sonatype Lifecycle Public REST API — Config Proxy Server. 3 operations. Lead operation: Config Proxy Server.
    Self-contained Naftiko capability covering one Sonatype business surface.'
  tags:
  - Sonatype
  - Config Proxy Server
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SONATYPE_API_KEY: SONATYPE_API_KEY
capability:
  consumes:
  - type: http
    namespace: lifecycle-config-proxy-server
    baseUri: ''
    description: Sonatype Lifecycle Public REST API — Config Proxy Server business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-config-httpProxyServer
      path: /api/v2/config/httpProxyServer
      operations:
      - name: deleteconfiguration4
        method: DELETE
        description: Use this method to remove an existing HTTP proxy server configuration.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getconfiguration4
        method: GET
        description: Use this method to inspect an existing HTTP proxy server configuration.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: setconfiguration4
        method: PUT
        description: Use this method to create or update an existing HTTP proxy server configuration.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.SONATYPE_API_KEY}}'
  exposes:
  - type: rest
    namespace: lifecycle-config-proxy-server-rest
    port: 8080
    description: REST adapter for Sonatype Lifecycle Public REST API — Config Proxy Server. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/v2/config/httpproxyserver
      name: api-v2-config-httpproxyserver
      description: REST surface for api-v2-config-httpProxyServer.
      operations:
      - method: DELETE
        name: deleteconfiguration4
        description: Use this method to remove an existing HTTP proxy server configuration.
        call: lifecycle-config-proxy-server.deleteconfiguration4
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getconfiguration4
        description: Use this method to inspect an existing HTTP proxy server configuration.
        call: lifecycle-config-proxy-server.getconfiguration4
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: setconfiguration4
        description: Use this method to create or update an existing HTTP proxy server configuration.
        call: lifecycle-config-proxy-server.setconfiguration4
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: lifecycle-config-proxy-server-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sonatype Lifecycle Public REST API — Config Proxy Server. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: use-this-method-remove-existing
      description: Use this method to remove an existing HTTP proxy server configuration.
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: lifecycle-config-proxy-server.deleteconfiguration4
      outputParameters:
      - type: object
        mapping: $.
    - name: use-this-method-inspect-existing
      description: Use this method to inspect an existing HTTP proxy server configuration.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: lifecycle-config-proxy-server.getconfiguration4
      outputParameters:
      - type: object
        mapping: $.
    - name: use-this-method-create-update
      description: Use this method to create or update an existing HTTP proxy server configuration.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: lifecycle-config-proxy-server.setconfiguration4
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.