Fumadocs · Capability

Fumadocs OpenAPI Proxy API — Proxy

Fumadocs OpenAPI Proxy API — Proxy. 6 operations. Lead operation: Fumadocs Proxy a GET request to an external API. Self-contained Naftiko capability covering one Fumadocs business surface.

Run with Naftiko FumadocsProxy

What You Can Do

GET
Proxyget — Fumadocs Proxy a GET request to an external API
/v1/api/proxy
POST
Proxypost — Fumadocs Proxy a POST request to an external API
/v1/api/proxy
PUT
Proxyput — Fumadocs Proxy a PUT request to an external API
/v1/api/proxy
PATCH
Proxypatch — Fumadocs Proxy a PATCH request to an external API
/v1/api/proxy
DELETE
Proxydelete — Fumadocs Proxy a DELETE request to an external API
/v1/api/proxy
HEAD
Proxyhead — Fumadocs Proxy a HEAD request to an external API
/v1/api/proxy

MCP Tools

fumadocs-proxy-get-request-external

Fumadocs Proxy a GET request to an external API

read-only idempotent
fumadocs-proxy-post-request-external

Fumadocs Proxy a POST request to an external API

fumadocs-proxy-put-request-external

Fumadocs Proxy a PUT request to an external API

idempotent
fumadocs-proxy-patch-request-external

Fumadocs Proxy a PATCH request to an external API

idempotent
fumadocs-proxy-delete-request-external

Fumadocs Proxy a DELETE request to an external API

idempotent
fumadocs-proxy-head-request-external

Fumadocs Proxy a HEAD request to an external API

Capability Spec

openapi-proxy-proxy.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fumadocs OpenAPI Proxy API — Proxy
  description: 'Fumadocs OpenAPI Proxy API — Proxy. 6 operations. Lead operation: Fumadocs Proxy a GET request to an external
    API. Self-contained Naftiko capability covering one Fumadocs business surface.'
  tags:
  - Fumadocs
  - Proxy
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FUMADOCS_API_KEY: FUMADOCS_API_KEY
capability:
  consumes:
  - type: http
    namespace: openapi-proxy-proxy
    baseUri: ''
    description: Fumadocs OpenAPI Proxy API — Proxy business capability. Self-contained, no shared references.
    resources:
    - name: api-proxy
      path: /api/proxy
      operations:
      - name: proxyget
        method: GET
        description: Fumadocs Proxy a GET request to an external API
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: proxypost
        method: POST
        description: Fumadocs Proxy a POST request to an external API
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: proxyput
        method: PUT
        description: Fumadocs Proxy a PUT request to an external API
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: proxypatch
        method: PATCH
        description: Fumadocs Proxy a PATCH request to an external API
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: proxydelete
        method: DELETE
        description: Fumadocs Proxy a DELETE request to an external API
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: proxyhead
        method: HEAD
        description: Fumadocs Proxy a HEAD request to an external API
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: openapi-proxy-proxy-rest
    port: 8080
    description: REST adapter for Fumadocs OpenAPI Proxy API — Proxy. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/proxy
      name: api-proxy
      description: REST surface for api-proxy.
      operations:
      - method: GET
        name: proxyget
        description: Fumadocs Proxy a GET request to an external API
        call: openapi-proxy-proxy.proxyget
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: proxypost
        description: Fumadocs Proxy a POST request to an external API
        call: openapi-proxy-proxy.proxypost
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: proxyput
        description: Fumadocs Proxy a PUT request to an external API
        call: openapi-proxy-proxy.proxyput
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: proxypatch
        description: Fumadocs Proxy a PATCH request to an external API
        call: openapi-proxy-proxy.proxypatch
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: proxydelete
        description: Fumadocs Proxy a DELETE request to an external API
        call: openapi-proxy-proxy.proxydelete
        outputParameters:
        - type: object
          mapping: $.
      - method: HEAD
        name: proxyhead
        description: Fumadocs Proxy a HEAD request to an external API
        call: openapi-proxy-proxy.proxyhead
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: openapi-proxy-proxy-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fumadocs OpenAPI Proxy API — Proxy. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: fumadocs-proxy-get-request-external
      description: Fumadocs Proxy a GET request to an external API
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: openapi-proxy-proxy.proxyget
      outputParameters:
      - type: object
        mapping: $.
    - name: fumadocs-proxy-post-request-external
      description: Fumadocs Proxy a POST request to an external API
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: openapi-proxy-proxy.proxypost
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fumadocs-proxy-put-request-external
      description: Fumadocs Proxy a PUT request to an external API
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: openapi-proxy-proxy.proxyput
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fumadocs-proxy-patch-request-external
      description: Fumadocs Proxy a PATCH request to an external API
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: openapi-proxy-proxy.proxypatch
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fumadocs-proxy-delete-request-external
      description: Fumadocs Proxy a DELETE request to an external API
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: openapi-proxy-proxy.proxydelete
      outputParameters:
      - type: object
        mapping: $.
    - name: fumadocs-proxy-head-request-external
      description: Fumadocs Proxy a HEAD request to an external API
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: openapi-proxy-proxy.proxyhead
      outputParameters:
      - type: object
        mapping: $.