Paragon · Capability

Paragon Proxy API — Custom Integrations

Paragon Proxy API — Custom Integrations. 2 operations. Lead operation: Paragon Proxy GET request to custom integration. Self-contained Naftiko capability covering one Paragon business surface.

Run with Naftiko ParagonCustom Integrations

What You Can Do

GET
Proxycustomgetrequest — Paragon Proxy GET request to custom integration
/v1/projects/{projectid}/sdk/proxy/custom/{integrationid}/{apipath}
POST
Proxycustompostrequest — Paragon Proxy POST request to custom integration
/v1/projects/{projectid}/sdk/proxy/custom/{integrationid}/{apipath}

MCP Tools

paragon-proxy-get-request-custom

Paragon Proxy GET request to custom integration

read-only idempotent
paragon-proxy-post-request-custom

Paragon Proxy POST request to custom integration

Capability Spec

proxy-custom-integrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Paragon Proxy API — Custom Integrations
  description: 'Paragon Proxy API — Custom Integrations. 2 operations. Lead operation: Paragon Proxy GET request to custom
    integration. Self-contained Naftiko capability covering one Paragon business surface.'
  tags:
  - Paragon
  - Custom Integrations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PARAGON_API_KEY: PARAGON_API_KEY
capability:
  consumes:
  - type: http
    namespace: proxy-custom-integrations
    baseUri: https://proxy.useparagon.com
    description: Paragon Proxy API — Custom Integrations business capability. Self-contained, no shared references.
    resources:
    - name: projects-projectId-sdk-proxy-custom-integrationId-apiPath
      path: /projects/{projectId}/sdk/proxy/custom/{integrationId}/{apiPath}
      operations:
      - name: proxycustomgetrequest
        method: GET
        description: Paragon Proxy GET request to custom integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectId
          in: path
          type: string
          description: Your Paragon Project ID.
          required: true
        - name: integrationId
          in: path
          type: string
          description: The ID of the custom integration.
          required: true
        - name: apiPath
          in: path
          type: string
          description: The API path of the custom integration to send the request to.
          required: true
      - name: proxycustompostrequest
        method: POST
        description: Paragon Proxy POST request to custom integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectId
          in: path
          type: string
          description: Your Paragon Project ID.
          required: true
        - name: integrationId
          in: path
          type: string
          description: The ID of the custom integration.
          required: true
        - name: apiPath
          in: path
          type: string
          description: The API path of the custom integration to send the request to.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.PARAGON_API_KEY}}'
  exposes:
  - type: rest
    namespace: proxy-custom-integrations-rest
    port: 8080
    description: REST adapter for Paragon Proxy API — Custom Integrations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/projects/{projectid}/sdk/proxy/custom/{integrationid}/{apipath}
      name: projects-projectid-sdk-proxy-custom-integrationid-apipath
      description: REST surface for projects-projectId-sdk-proxy-custom-integrationId-apiPath.
      operations:
      - method: GET
        name: proxycustomgetrequest
        description: Paragon Proxy GET request to custom integration
        call: proxy-custom-integrations.proxycustomgetrequest
        with:
          projectId: rest.projectId
          integrationId: rest.integrationId
          apiPath: rest.apiPath
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: proxycustompostrequest
        description: Paragon Proxy POST request to custom integration
        call: proxy-custom-integrations.proxycustompostrequest
        with:
          projectId: rest.projectId
          integrationId: rest.integrationId
          apiPath: rest.apiPath
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: proxy-custom-integrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Paragon Proxy API — Custom Integrations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: paragon-proxy-get-request-custom
      description: Paragon Proxy GET request to custom integration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: proxy-custom-integrations.proxycustomgetrequest
      with:
        projectId: tools.projectId
        integrationId: tools.integrationId
        apiPath: tools.apiPath
      outputParameters:
      - type: object
        mapping: $.
    - name: paragon-proxy-post-request-custom
      description: Paragon Proxy POST request to custom integration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: proxy-custom-integrations.proxycustompostrequest
      with:
        projectId: tools.projectId
        integrationId: tools.integrationId
        apiPath: tools.apiPath
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.