GoDaddy · Capability

godaddy-countries — v1

godaddy-countries — v1. 2 operations. Lead operation: Retrieves summary country information for the provided marketId and filters. Self-contained Naftiko capability covering one Godaddy business surface.

Run with Naftiko Godaddyv1

What You Can Do

GET
Getcountries — Retrieves summary country information for the provided marketId and filters
/v1/v1/countries
GET
Getcountry — Retrieves country and summary state information for provided countryKey
/v1/v1/countries/{countrykey}

MCP Tools

retrieves-summary-country-information-provided

Retrieves summary country information for the provided marketId and filters

read-only idempotent
retrieves-country-and-summary-state

Retrieves country and summary state information for provided countryKey

read-only idempotent

Capability Spec

countries-v1.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: godaddy-countries — v1
  description: 'godaddy-countries — v1. 2 operations. Lead operation: Retrieves summary country information for the provided
    marketId and filters. Self-contained Naftiko capability covering one Godaddy business surface.'
  tags:
  - Godaddy
  - v1
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GODADDY_API_KEY: GODADDY_API_KEY
capability:
  consumes:
  - type: http
    namespace: countries-v1
    baseUri: https://api.ote-godaddy.com
    description: godaddy-countries — v1 business capability. Self-contained, no shared references.
    resources:
    - name: v1-countries
      path: /v1/countries
      operations:
      - name: getcountries
        method: GET
        description: Retrieves summary country information for the provided marketId and filters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: marketId
          in: query
          type: string
          description: MarketId in which the request is being made, and for which responses should be localized
          required: true
    - name: v1-countries-countryKey
      path: /v1/countries/{countryKey}
      operations:
      - name: getcountry
        method: GET
        description: Retrieves country and summary state information for provided countryKey
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: countryKey
          in: path
          type: string
          description: The country key
          required: true
        - name: marketId
          in: query
          type: string
          description: MarketId in which the request is being made, and for which responses should be localized
          required: true
  exposes:
  - type: rest
    namespace: countries-v1-rest
    port: 8080
    description: REST adapter for godaddy-countries — v1. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v1/countries
      name: v1-countries
      description: REST surface for v1-countries.
      operations:
      - method: GET
        name: getcountries
        description: Retrieves summary country information for the provided marketId and filters
        call: countries-v1.getcountries
        with:
          marketId: rest.marketId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/countries/{countrykey}
      name: v1-countries-countrykey
      description: REST surface for v1-countries-countryKey.
      operations:
      - method: GET
        name: getcountry
        description: Retrieves country and summary state information for provided countryKey
        call: countries-v1.getcountry
        with:
          countryKey: rest.countryKey
          marketId: rest.marketId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: countries-v1-mcp
    port: 9090
    transport: http
    description: MCP adapter for godaddy-countries — v1. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: retrieves-summary-country-information-provided
      description: Retrieves summary country information for the provided marketId and filters
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: countries-v1.getcountries
      with:
        marketId: tools.marketId
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieves-country-and-summary-state
      description: Retrieves country and summary state information for provided countryKey
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: countries-v1.getcountry
      with:
        countryKey: tools.countryKey
        marketId: tools.marketId
      outputParameters:
      - type: object
        mapping: $.