GreyNoise Intelligence · Capability

GreyNoise API — Tags

Tags surface of GreyNoise API. 1 operations. Lead operation: List Tags. Self-contained Naftiko capability covering one GreyNoise business surface.

Run with Naftiko GreyNoiseSecurityTags

What You Can Do

GET
Listtags — List Tags
/v1/tags

MCP Tools

list-tags

List Tags

read-only idempotent

Capability Spec

greynoise-tags.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GreyNoise API — Tags
  description: 'Tags surface of GreyNoise API. 1 operations. Lead operation: List Tags. Self-contained Naftiko capability covering one GreyNoise business surface.'
  tags:
    - GreyNoise
    - Security
    - Tags
  created: '2026-05-30'
  modified: '2026-05-30'
binds:
  - namespace: env
    keys:
      GREYNOISE_API_KEY: GREYNOISE_API_KEY
capability:
  consumes:
    - type: http
      namespace: greynoise-tags
      baseUri: https://api.greynoise.io
      description: GreyNoise API — Tags business capability. Self-contained, no shared references.
      authentication:
        type: apikey
        key: key
        value: '{{env.GREYNOISE_API_KEY}}'
        placement: header
      resources:
        - name: v3-tags
          path: /v3/tags
          operations:
            - name: listTags
              method: GET
              description: List Tags
              inputParameters:
                - name: name
                  in: query
                  type: string
                  required: false
                  description: Filter tags by name (partial match)
                - name: slug
                  in: query
                  type: string
                  required: false
                  description: Filter tags by slug (exact match)
                - name: cve
                  in: query
                  type: string
                  required: false
                  description: Filter tags by associated CVE
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
  exposes:
    - type: rest
      namespace: greynoise-tags-rest
      port: 8080
      description: REST adapter for GreyNoise API — Tags. One Spectral-compliant resource per consumed operation, prefixed with /v1.
      resources:
        - path: /v1/tags
          name: v1-tags
          description: REST surface for List Tags.
          operations:
            - method: GET
              name: listTags
              description: List Tags
              call: greynoise-tags.listTags
              with:
                name: rest.name
                slug: rest.slug
                cve: rest.cve
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: greynoise-tags-mcp
      port: 9090
      transport: http
      description: MCP adapter for GreyNoise API — Tags. One tool per consumed operation, routed inline through this capability's consumes block.
      tools:
        - name: list-tags
          description: List Tags
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: greynoise-tags.listTags
          with:
            name: tools.name
            slug: tools.slug
            cve: tools.cve
          outputParameters:
            - type: object
              mapping: $.