Frostbyte · Capability

Clawdia Agent Gateway API — Security

Clawdia Agent Gateway API — Security. 2 operations. Lead operation: Poison Guard — /api/analyze. Self-contained Naftiko capability covering one Frostbyte business surface.

Run with Naftiko FrostbyteSecurity

What You Can Do

POST
Poisonguardpostapianalyze — Poison Guard — /api/analyze
/v1/v1/poison-guard/api/analyze
GET
Poisonguardgetapicheckaddress — Poison Guard — /api/check/:address
/v1/v1/poison-guard/api/check/{address}

MCP Tools

poison-guard-api-analyze

Poison Guard — /api/analyze

poison-guard-api-check-address

Poison Guard — /api/check/:address

read-only idempotent

Capability Spec

agent-gateway-security.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Clawdia Agent Gateway API — Security
  description: 'Clawdia Agent Gateway API — Security. 2 operations. Lead operation: Poison Guard — /api/analyze. Self-contained
    Naftiko capability covering one Frostbyte business surface.'
  tags:
  - Frostbyte
  - Security
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FROSTBYTE_API_KEY: FROSTBYTE_API_KEY
capability:
  consumes:
  - type: http
    namespace: agent-gateway-security
    baseUri: https://agent-gateway-kappa.vercel.app
    description: Clawdia Agent Gateway API — Security business capability. Self-contained, no shared references.
    resources:
    - name: v1-poison-guard-api-analyze
      path: /v1/poison-guard/api/analyze
      operations:
      - name: poisonguardpostapianalyze
        method: POST
        description: Poison Guard — /api/analyze
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-poison-guard-api-check-address
      path: /v1/poison-guard/api/check/{address}
      operations:
      - name: poisonguardgetapicheckaddress
        method: GET
        description: Poison Guard — /api/check/:address
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: address
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.FROSTBYTE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: agent-gateway-security-rest
    port: 8080
    description: REST adapter for Clawdia Agent Gateway API — Security. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/poison-guard/api/analyze
      name: v1-poison-guard-api-analyze
      description: REST surface for v1-poison-guard-api-analyze.
      operations:
      - method: POST
        name: poisonguardpostapianalyze
        description: Poison Guard — /api/analyze
        call: agent-gateway-security.poisonguardpostapianalyze
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/poison-guard/api/check/{address}
      name: v1-poison-guard-api-check-address
      description: REST surface for v1-poison-guard-api-check-address.
      operations:
      - method: GET
        name: poisonguardgetapicheckaddress
        description: Poison Guard — /api/check/:address
        call: agent-gateway-security.poisonguardgetapicheckaddress
        with:
          address: rest.address
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: agent-gateway-security-mcp
    port: 9090
    transport: http
    description: MCP adapter for Clawdia Agent Gateway API — Security. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: poison-guard-api-analyze
      description: Poison Guard — /api/analyze
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agent-gateway-security.poisonguardpostapianalyze
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: poison-guard-api-check-address
      description: Poison Guard — /api/check/:address
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-gateway-security.poisonguardgetapicheckaddress
      with:
        address: tools.address
      outputParameters:
      - type: object
        mapping: $.